Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...

share|improve this question

6 Answers

up vote 48 down vote accepted

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

JLabel l = new JLabel("<html>Hello World!<br>blahblahblah</html>", SwingConstants.CENTER);
share|improve this answer
2  
thanks! that works great (just seems a little odd) – mportiz08 Jul 7 '09 at 2:38
Thanks, I agree about the oddness. – freitass Jul 7 '09 at 12:25
   
just a little correction: use <br /> instead of just <br> ... this is recommended way of doing it (to not miss any closing tags)...happy coding... – Nitin Bansal Apr 18 '12 at 5:50
1  
@NitinBansal Actually it's recommended in the new version of HTML to leave it as <br>. It's called a void tag. <br /> still works for backwards compatibility. – gsingh2011 Apr 27 '12 at 3:50
@gsingh2011 : ok...thats better :-) – Nitin Bansal Apr 27 '12 at 15:43
show 1 more comment

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

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

share|improve this answer

Thanks Aakash for recommending JIDE MultilineLabel. JIDE's StyledLabel is also enhanced recently to support multiple line. I would recommend it over the MultilineLabel as it has many other great features. You can check out an article on StyledLabel below. It is still free and open source.

http://www.jidesoft.com/articles/StyledLabel.pdf

share|improve this answer

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 <BR>, you would get your newlines.

share|improve this answer
sigh I tried to add backticks to escape your html, however it says I can't edit unless I'm adding at least 6 characters. – Annan Apr 16 '11 at 0:13
@Annan That isn't necessary in HTML. What you're talking about is for supporting XHTML. stackoverflow.com/questions/1946426/html-5-is-it-br-br-or-br – b1naryatr0phy May 11 at 17:03
@b1naryatr0phy na, the problem was fixed :) The original post had a literal <br> tag which was formatted by stack-overflow as a literal line break in the post. – Annan May 13 at 4:50

You can do

JLabel l = new JLabel("<html><p>Hello World! blah blah blah</p></html>", SwingConstants.CENTER);

and it will automatically wrap it where appropriate.

share|improve this answer

Yeah, you can use HTML tags. If you want make the paragraph is also in centre align, you can use this.

JLabel l = new JLabel("<html><p align=center>Hello World! <br> blah blah blah</p></html>", SwingConstants.CENTER);
share|improve this answer
1  
-1 There is no need to simply repeat answers that already exist. Welcome to Stack Overflow! – Erick Robertson Sep 27 '12 at 16:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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