JEdi​​torPane HTML渲染

时间:2011-01-10 16:15:54

标签: java html swing jeditorpane

我正在使用JEditPane呈现包含链接的HTML文本,并使链接可以点击。我已设法做到这一点但文本和链接以丑陋的字体和颜色显示,默认的蓝色下划线链接等。有没有办法在不编辑HTML内部的情况下更改JEditPane的默认行为?

感谢帮助 感谢

1 个答案:

答案 0 :(得分:4)

尝试添加CSS样式,如下所示:

JEditorPane jEditorPane = new JEditorPane();
HTMLEditorKit kit = new HTMLEditorKit();
StyleSheet styleSheet = kit.getStyleSheet();
styleSheet.addRule("A {color:red}"); //change links to red
jEditorPane.setEditorKit(kit);