如何在 JTextArea 中添加可点击的 URL?
我正在编写一个应用程序,并使用 JTextArea 来显示一些文本。现在我想在文本区域中显示一些可点击的 URL 以及普通文本,并且我希望如果用户单击该 URL,则该 URL 引用的网页应在新的 Web 浏览器窗口中打开。
I am writing an application and in that I am using JTextArea
to display some text. Now I want to show some clickable URL in text area along with the normal text and I want if user click on the URL then the web page that URL referring to should open in new web browser window.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 JEditorPane 与 HTMLEditorKit 或 JTextPane 结合使用并将内容类型设置为“text/html”
Use JEditorPane with HTMLEditorKit or JTextPane and set content type to "text/html"
以下是从 JTextArea 打开链接的示例:
Here is an example of opening links from JTextArea: