JTextPane 明文

发布于 2024-12-19 12:56:50 字数 149 浏览 1 评论 0原文

我正在尝试从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱娆 2024-12-26 12:56:50

可能是因为您正在使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文