如何在 JTextPane 中默认将内容滚动到底部?
我的窗口上有 JTextPane,并且有 JTextField。当我在 JTextField 中按 Enter 键时,文本将添加到 JTextPane 中。一切工作正常,滚动条也单独出现。但是,它显示不正确。它会自动滚动到 JTextPane 中内容的开头。如何将滚动条保持在 JTextPane 的末尾?
I have JTextPane on my window and i have JTextField. When i press enter enter in JTextField, the text gets added in JTextPane. Everything works fine and scrollbar too appears on its own. But, it doesn't appear properly. It automatically scrolls to the beginning of the content in JTextPane. How do i keep the scrollbar to the end of JTextPane?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
接受的答案中提供的链接是旧链接。您可能需要查看文本区域滚动以获取更多信息。该条目适用于文本区域,但我相信该信息也适用于文本窗格。
The provided link in the accepted answer is an old link. You may want to check out Text Area Scrolling for additional information. The entry is for a text area but I believe the information applies to a text pane as well.
您可以尝试调用
这应该是最有效的方法。否则尝试搜索
scrollPane.setValue(..)
或使用插入符号:editorPane.setCaretPosition(...)
You can try by invoking
This should be the most working approach. Otherwise try to search out
scrollPane.setValue(..)
or work with the caret:editorPane.setCaretPosition(...)
我发现了同样问题的讨论。看看 http://www.coderanch。 com/t/329964/GUI/java/JScrollpane-Force-autoscroll-bottom
I found a discussion of the same problem. Have a look at http://www.coderanch.com/t/329964/GUI/java/JScrollpane-Force-autoscroll-bottom