如何使用 JTextPane 中的标签

发布于 2024-11-30 22:05:50 字数 334 浏览 1 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

2024-12-07 22:05:50

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.

可爱咩 2024-12-07 22:05:50

您需要 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.

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