JEdi​​torPane将一些款式变成蓝色

时间:2013-04-21 05:15:39

标签: java css swing jeditorpane

我一直在使用JEditorPane,试图显示CSS,但它似乎没有正确地这样做。看看其他例子,它似乎应该是正确的,但似乎没有正确呈现。据我所知,CSS和swing不起作用......完全一致。

这就是我目前正在尝试做的事情:

// List variables...
public JEditorPane diff_view = new JEditorPane();
public static HTMLEditorKit kit = new HTMLEditorKit();
public static StyleSheet ss = kit.getStyleSheet();

public Frame() {
// Adding a list...
try {
    ss.importStyleSheet(new URL("http://slot1.wikia.com/load.php?debug=true&lang=en&"
                    + "modules=mediawiki.action.history.diff&only=styles"));
    } catch (MalformedURLException ex) { }
JScrollPane jsp2 = new JScrollPane(diff_view);
jsp2.setSize(909, 650);
jsp2.setLocation(153, 100);
diff_view.setContentType("text/html");
diff_view.setEditable(false);
diff_view.setLocation(153, 100);
diff_view.setSize(909, 650);
diff_view.setEditorKit(kit);
add(diff_view);
}
// Retrieving the pages..

没有错误,只是一个蓝色的编辑器窗格。以下是最初检索的内容:http://runescape.wikia.com/index.php?diff=prev&oldid=7886038&diffonly=1&action=render

我是否应该尝试更改样式表,jeditorpane或其他内容?

以下是为了清晰起见而发生的事情:

Blue JEditorPane

2 个答案:

答案 0 :(得分:1)

JEditorPane支持的款式有限。你可以试试,例如https://code.google.com/p/flying-saucer/

答案 1 :(得分:0)

你不应该使用jeditorpane。