概要

JLabelなどのHtmlレンダリングを無効化して、タグ文字列をそのまま表示します。

サンプルコード

label.putClientProperty("html.disable", Boolean.TRUE);
label.setText("<html><font color=red>Html Test</font></html>");
label.setToolTipText("<html>&lt;html&gt;&lt;font color=red&gt;Html Test&lt;/font&gt;&lt;/html&gt;</html>");
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、JLabelなどにputClientProperty("html.disable", Boolean.TRUE)を設定することで、<html>タグとしてレンダリングせずにそのまま文字列として表示しています。

  • JLabelputClientProperty("html.disable", Boolean.TRUE)を設定しても、そのJLabelJToolTipには反映されない
    • <html>タグの中で文字実体参照を使用して回避

参考リンク

コメント