I need a text pop up like the one you get with JOptionPane.showInputDialog(null, "Text");
Just with multiple lines, like...
I'm new to java.
I have no background in programming.
I could use some help
How would I do this?
You could use '\n' like so:
JOptionPane.showMessageDialog(null, "Hello\nworld");