gpt4 book ai didi

java - 将超链接附加到 JEditorPane

转载 作者:行者123 更新时间:2023-11-30 08:01:52 26 4
gpt4 key购买 nike

我有一个程序将一些 URL 输出到 JEditorPane。我希望 URL 成为超链接。该程序基本上会将 URLS 输出到 JEditorPane,就好像它是日志一样。

我已经得到了一些工作,但它没有超链接 URL。

这是我的代码:

JEditorPane editorPane = new JEditorPane();
editorPane.setEditorKit(JEditorPane.createEditorKitForContentType("text/html"));
editorPane.setEditable(false);
editorPane.addHyperlinkListener(new HyperlinkListener() {
//listener code here
});

//some other code here

StyledDocument document = (StyledDocument) editorPane.getDocument();

String url = "http://some url";
String newUrl = "\n<a href=\""+url+"\">"+url+"</a>\n";
document.insertString(document.getLength(), "\n" + newUrl + "\n", null);

而不是 http://example.com/它输出:

<a href="http://example.com/">http://example.com/</a>

如果我不使用 StyledDocument 而只是执行 editorPane.setText(newUrl)它确实正确地超链接了 URL,但它有一个明显的问题,即 setText 将替换已经存在的任何内容。

最佳答案

当您使用editorPane.setText()时,该方法将使用编辑器工具包插入字符串。这意味着它将对其进行分析、设置样式,然后使用 document.insertString() 和适当的样式来创建预期的效果。

如果您直接调用 document.insertString(),您将绕过编辑器工具包 -> 无样式。查看 setText() 的源代码以了解它是如何完成的:http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/8u40-b25/javax/swing/JEditorPane.java#JEditorPane.setText%28java.lang.String%29

由于版权原因,我无法在这里复制代码。这应该可以帮助您开始:

Document doc = editorPane.getDocument();
EditorKit kit = editorPane.getEditorKit();
StringReader r = new StringReader(newUrl);
kit.read(r, doc, doc.getLength());

关于java - 将超链接附加到 JEditorPane,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31794333/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com