我创建了一个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");
}
}
}
答案 0 :(得分:2)
希望将光标移动到下一行。
chatArea.append("> Blank Message" + "\n");
chatArea.setCaretPosition( chatArea.getDocument().getLength() );