我创建了一个JtextArea,并在文本区域中添加了一段文本之后,想要将光标移动到下一行。即我将字符串追加到文本区域,然后当用户开始在文本区域中键入内容时,希望输入在我追加的字符串的末尾在下一行而不是同一行。

import javax.swing.JTextArea;
import javax.swing.JFrame;
public class NewSecureChat{
private JFrame myFrame;
private JTextArea chatArea;
public static void main(String[] args) {
    public NewSecureChat() throws UnknownHostException  {
    JFrame myFrame = new JFrame();
    myFrame.setSize(900, 400);
    myFrame.setLocation(400, 400);
    myFrame.setTitle("SecureChat 1.0" + (Inet4Address.getLocalHost().getHostAddress()));
    myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myFrame.setAlwaysOnTop(true);

    panel1 = new JPanel();
    chatArea = new JTextArea("Chat here!", 3, 5);
    panel5.add(chatArea);
    chatArea.append("> Blank Message" + "\n");

    }
}
}

最佳答案

想要将光标移动到下一行。


chatArea.append("> Blank Message" + "\n");
chatArea.setCaretPosition( chatArea.getDocument().getLength() );

10-06 13:34