• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JEditorPaneのHTMLEditorKitにCSSを適用
#navi(../)
RIGHT:Posted by [[aterai]] at 2009-07-20
RIGHT:Posted by &author(aterai); at 2009-07-20
*JEditorPaneのHTMLEditorKitにCSSを適用 [#y336d1e1]
JEditorPaneにStyleSheetを追加したHTMLEditorKitを設定します。

-&jnlp;
-&jar;
-&zip;

//#screenshot
#ref(http://lh5.ggpht.com/_9Z4BYR88imo/TQTT6cwbhCI/AAAAAAAAAlM/PsSYnlumJJg/s800/StyleSheet.png)

**サンプルコード [#p2576f29]
#code{{
StyleSheet styleSheet = new StyleSheet();
styleSheet.addRule("body {font-size: 12pt;}");
styleSheet.addRule(".highlight {color: red; background: green}");
HTMLEditorKit htmlEditorKit = new HTMLEditorKit();
htmlEditorKit.setStyleSheet(styleSheet);
JEditorPane editor = new JEditorPane();
editor.setEditorKit(htmlEditorKit);
editor.setText(makeTestHtml());
}}

**解説 [#f80e2a15]
上記のサンプルでは、クラス名が.highlightの要素の文字色と背景色をCSSで変更しています。

**参考リンク [#kc26b056]
-[http://www.ne.jp/asahi/hishidama/home/tech/java/swing/JEditorPane.html Java Swing「JEditorPane」メモ(Hishidama's Swing-JEditorPane Memo)]
-[http://forums.sun.com/thread.jspa?threadID=580677 Swing - HTMLEditorKit and CSS]
-[http://java.sun.com/javase/ja/6/docs/ja/api/javax/swing/text/html/StyleSheet.html StyleSheet (Java Platform SE 6)]
-[http://docs.oracle.com/javase/jp/6/api/javax/swing/text/html/StyleSheet.html StyleSheet (Java Platform SE 6)]
-- [http://docs.oracle.com/javase/jp/6/api/javax/swing/text/html/CSS.html 対応しているCSSプロパティ一覧 - CSS (Java Platform SE 6)]
-[http://www.devdaily.com/blog/post/jfc-swing/how-add-style-stylesheet-jeditorpane-example-code/ How to add stylesheet information to a JEditorPane (jfc/swing)]
-[[GraphicsEnvironmentにFontを登録して使用する>Swing/RegisterFont]]

**コメント [#y67a16b3]
#comment