vote up 1 vote down star

How can I display a newline in JLabel?

For example, if I wanted:

Hello World!
blahblahblah

This is what I have right now:

JLabel l = new JLabel("Hello World!\nblahblahblah", SwingConstants.CENTER);

This is what is displayed:

Hello World!blahblahblah

Forgive me if this is a dumb question, I'm just learning some Swing basics...

flag

70% accept rate

3 Answers

vote up 8 vote down check

Surround the string with <html></html> and break the lines with <br>.

JLabel l = new JLabel("<html>Hello World!<br>blahblahblah</html>", SwingConstants.CENTER);
link|flag
thanks! that works great (just seems a little odd) – mportiz08 Jul 7 at 2:38
Thanks, I agree about the oddness. – freitass Jul 7 at 12:25
vote up 1 vote down

JLabel is actually capable of displaying some rudimentary HTML, which is why it is not responding to your use of the newline character (unlike, say, System.out).

If you put in the corresponding HTML and used
, you would get your newlines.

link|flag
vote up 0 vote down

You can use the MultilineLabel component in the Jide Open Source Components.

http://www.jidesoft.com/products/oss.htm

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.