HTML in JLabel not showing

前端 未结 2 1633
执念已碎
执念已碎 2020-12-21 05:40
JLabel label = new JLabel(\"Hello world\");

shows nothing.

If I get rid of the tags, it

2条回答
  •  北海茫月
    2020-12-21 06:18

    I have tested your JLabel and JEditorPane code in Eclipse using the latest Windows JDK, using several different look-and-feels, but they all work just fine. I know you're using OpenJDK but I can't get hold of a version for Windows. I'm guessing there is a difference in the two implementations.

    Might I suggest wrapping your text inside a paragraph, such as "

    Hello world

    "?

提交回复
热议问题