JTextPane 问题 - 光标位置位于末尾
我有一个 JTextpane,是从数据库填充的。
问题是当我设置文本时,当文本很长时,JTextPane 从末尾显示文本,就像快照中一样。
我该怎么办?我尝试了 setCursor()
但我似乎这不是正确的方法。
I have a JTextpane that I had populated it from DB.
The problem is when I set text, and when it's long, the JTextPane show the text from the end like in the snapshot.
How can I do ?? I tried setCursor()
but I seem it isn't the right method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行以下操作:
有关更多信息,请参阅文本区域滚动信息。
You can do something like:
See Text Area Scrolling for more info.