formatting text in jdialog box

后端 未结 2 719
醉话见心
醉话见心 2020-12-01 23:29

I have a JOptionPane:

JOptionPane.showMessageDialog(null, text);

The text is a sting:

String text = \"Hello world.\"
         


        
2条回答
  •  悲哀的现实
    2020-12-02 00:00

    It should be possible to use html to solve this, ie

    String t = "Hello world!";
    

    See http://docs.oracle.com/javase/tutorial/uiswing/components/html.html for more info.

提交回复
热议问题