在这种情况下,JTextPane 的适当事件侦听器是什么?
我有一个显示 HTML 文本的 JTextPane。 HTML 文本具有带标签的超链接...
我想在用户单击 JTextPane 上显示的 html 文本中的链接时调用 java 函数。
我怎样才能实现这个目标?是否需要实现事件监听?如果是这样,要处理的适当事件侦听器是什么?
I have a JTextPane that displays HTML text. HTML text has hyperlinks with tags ...
I want to invoke a java function when the user clicks on a link within the html text displayed on the JTextPane.
How can I achieve this? If there is a need to implement an event listener? If so what is the appropriate event listener that is to be handled?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的侦听器类型是 HyperlinkListener,一些代码片段:
The listener type you are looking for is a HyperlinkListener, some code snippet: