Summary

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

Source Code Examples

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

Explanation

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

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

Reference

Comment