Swing/HonorDisplayProperties のバックアップ(No.6)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/HonorDisplayProperties へ行く。
- category: swing folder: HonorDisplayProperties title: JEditorPaneに設定したフォントをHTMLテキストに適用する tags: [JEditorPane, HTMLEditorKit, Font, StyleSheet, HTML] author: aterai pubdate: 2015-08-31T03:59:20+09:00 description: HTMLEditorKitでbodyタグにデフォルトで指定されている文字サイズではなく、JEditorPaneに設定したフォントをHTMLテキストで使用します。 image:
概要
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#setFont(new Font("Serif", Font.PLAIN, 16))
でフォントを指定しても反映されません。JEditorPane
に設定されたフォントを使用する場合は、JEditorPane#putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, Boolean.TRUE)
としてコンポーネントのデフォルトのフォントを使用するように設定する必要があります。
body
タグのスタイルを表示するサンプルコード- StyleSheet (Java Platform SE 8)のサンプル(
ShowStyles
)を参考
- StyleSheet (Java Platform SE 8)のサンプル(
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());
- メモ:
JDK 1.8.0_60
ではスクリーンショットのように自動的に折り返されるが、JDK 1.9.0-ea-b78
では、水平スクロールバーが表示される?