我有一个_result JtextArea。每秒钟都会在其后附加新的文本String
默认情况下,光标在顶部。
我需要光标始终位于JTextArea中文本的末尾。这样我可以看到最后附加的String是什么。

  _result.append("my text");
    // How do I make the cursor of `_result` JTextArea to be at the end of the text?

最佳答案

也许这会有所帮助。

_result.setCaretPosition(_result.getText().length());

关于java - 如何在JTextArea中更改光标的默认位置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17768212/

10-14 10:07