Swing/HtmlDisable のバックアップ(No.7)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/HtmlDisable へ行く。
- category: swing folder: HtmlDisable title: JLabelなどのHtmlレンダリングを無効化 tags: [JLabel, Html, JToolTip] author: aterai pubdate: 2008-04-21T13:43:08+09:00 description: JLabelなどのHtmlレンダリングを無効化して、タグ文字列をそのまま表示します。 image:
概要
JLabel
などのHtml
レンダリングを無効化して、タグ文字列をそのまま表示します。
Screenshot
Advertisement
サンプルコード
label.putClientProperty("html.disable", Boolean.TRUE);
label.setText("<html><font color=red>Html Test</font></html>");
label.setToolTipText("<html><html><font color=red>Html Test</font></html></html>");
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JLabel
などにputClientProperty("html.disable", Boolean.TRUE)
を設定することで、<html>
タグとしてレンダリングせずにそのまま文字列として表示しています。
JLabel
に、putClientProperty("html.disable", Boolean.TRUE)
としても、その JLabel
のJToolTip
には反映されないので、<html>
タグの中で文字実体参照を使用しています。