如何从 JTextArea 组件中的特定字符串添加到文件系统中文件的超链接
我用 Swing 在 java 中构建了一些 GUI,我使用 JTextArea 来显示纯文本,并且我想从 JTextArea 组件中的内容中获取特定字符串并使其成为超链接,因此当用户按下此超链接时,会从文件系统中获取匹配文件被打开。
我该怎么做?
谢谢, 鲁思:-)
I build some GUI in java with Swing, I use JTextArea to display plain text, and i want to take specific string from the content in the JTextArea component and make it hyperlink, so when the user press this hyperlink the match file from the file system is opened.
How can i do it?
Thanks,
Reuth :-)
请改用 JEditorPane。有一个实现 HyperlinkListener 在 JavaDocs 的顶部。
Use a JEditorPane instead. There is an example of implementing an HyperlinkListener at the top of the JavaDocs.