JEditorPaneに設定したフォントをHTMLテキストに適用する
Total: 4806
, Today: 1
, Yesterday: 3
Posted by aterai at
Last-modified:
概要
HTMLEditorKit
でbody
タグにデフォルトで指定されている文字サイズではなく、JEditorPane
に設定したフォントをHTML
テキストで使用します。
Screenshot
Advertisement
サンプルコード
editor.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
View in GitHub: Java, Kotlin解説
HTMLEditorKit
のデフォルトスタイルシートではbody
タグにfont-size: 14pt
などが設定されている- この設定が
HTML
テキストのデフォルト文字サイズになっているため、JEditorPane
にたとえばJEditorPane#setFont(new Font("Serif", Font.PLAIN, 16))
とフォントを変更しても反映されない
- この設定が
JEditorPane
に設定されたフォントを使用する場合は、JEditorPane#putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE)
としてコンポーネントのデフォルトのフォントを使用するように設定する必要がある
body
タグのスタイルを表示するサンプルコード- StyleSheet (Java Platform SE 8)のサンプル(
ShowStyles
)を参考StringBuilder buf = new StringBuilder(300); HTMLEditorKit htmlEditorKit = (HTMLEditorKit) editor.getEditorKit(); StyleSheet styles = htmlEditorKit.getStyleSheet(); // System.out.println(styles); Enumeration rules = styles.getStyleNames(); while (rules.hasMoreElements()) { String name = (String) rules.nextElement(); if ("body".equals(name)) { Style rule = styles.getStyle(name); Enumeration sets = rule.getAttributeNames(); while (sets.hasMoreElements()) { Object n = sets.nextElement(); buf.append(String.format("%s: %s<br />", n, rule.getAttribute(n))); } } } editor.setText(buf.toString());
- StyleSheet (Java Platform SE 8)のサンプル(