如何使 JTextArea 移动滚动条
我正在使用 Java Swing,并将 JTextArea 放入 JScrollBar 中。我想要的是跟随数据的滚动条。 例如,我想在 JTextArea 中写入 for(;;) 的输出,以便我可以看到最新的值。 我怎么能这么做呢?
编辑:我已将问题编辑得更具体。
I am working with Java Swing and I have put a JTextArea in a JScrollBar. What I want is the scrollbar to follow the data.
For a example i want to write in the JTextArea the output of a for(;;) so i can see the latest (newest) values.
How could I do that?
EDIT: I have edited the question to be more specific.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
(它会自动发生;)
( It happens automatically ;)
文本区域滚动
Text Area Scrolling
如果您在 JScrollPane 中使用 JTextArea 那么以下应该可以工作:
IF you are using JTextArea in JScrollPane then following should work: