如何使用 JTextPane 中的标签
我有一个 JTextPane,它显示一个链接,单击该链接应在浏览器中打开一个页面。
该链接被设置为 TextPane
的文本,如下所示:
<a href=http://www.google.com target=_blank>Read more..</a>
下面还显示了该链接在我的窗格中的外观:
当我点击此按钮时没有任何反应,有人知道为什么吗?
I have a JTextPane
which displays a link to which on click should open a page in the browser.
The link is set as a text to the TextPane
as shown:
<a href=http://www.google.com target=_blank>Read more..</a>
Also below shows how the link looks like in my pane:
When I click on this nothing happends, do anyone know why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
JTextPane 应该是不可编辑的,正如 BegemoT 所说,或者您可以使用它
http://java-sl.com/tip_links_in_editable.html 允许可编辑窗格中的链接。
Either the JTextPane should be non-editable as it's stated by BegemoT or you can use this
http://java-sl.com/tip_links_in_editable.html to allow links in editable pane.
您需要 JTextPane 不可编辑才能激活链接,并在其上安装 HyperlinkListener 以提供单击链接时应执行的操作。
You need JTextPane to be non-editable for link to activate, and install HyperlinkListener on it to provide action which should be done when link clicked.