I have a JOptionPane:
JOptionPane.showMessageDialog(null, text);
The text is a sting:
String text = \"Hello world.\"
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.