JTextPane 明文
我正在尝试从 JTextPane 中删除所有文本。我认为你可以简单地使用:
textPane.setText("");
这确实有效,但由于某种原因,调用该方法后总是有一个空行。这是为什么?我该如何防止这种情况发生?
I'm trying to remove all text from a JTextPane. I thought you could simply use:
textPane.setText("");
This DOES work, but for some reason, there always is an empty line after calling that method. Why is that and how do I prevent that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能是因为您正在使用 KeyListener 来侦听 Enter 键,然后清除文本。 JTextPane 有一个操作,当按下 Enter 键时会添加换行符,并且在清除文本窗格后会发生这种情况。
正确的解决方案是使用键绑定并将默认操作替换为清除文本窗格的操作。
Probably because you are using a KeyListener to listen for the Enter key and then clear the text. Well JTextPane has an Action which adds a newline character when the Enter key is pressed and the is happening after you clear the text pane.
The proper solution is to use Key Bindings and replace the default Action with an action that clears the text pane.