我有以下代码将 html 添加到 JEditorPane
JEditorPane content = new JEditorPane ();
content.setEditable(false);
content.setContentType( "text/html" );
content.setText(resultText);
JScrollPane bottomScrollPane = new JScrollPane(content);
bottomScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
bottomScrollPane.setBorder(BorderFactory.createTitledBorder("Swing Rendered"));
在这一步之后,我已将 JEditorPane 实例“内容”添加到 JPanel 实例中,并且可以完美地看到结果。但是当我尝试单击显示的链接时,它不起作用。
我如何使这些链接可点击,它应该将用户重定向到浏览器中的特定网址?
问候, 巴兰