vote up 0 vote down star

how can i insert a newline character in a java applet program if i am using "label" instead of sys.out.println??

thanks in advance

flag

3 Answers

vote up 1 vote down

Put a \n in the string.

Like this:

String twoLineString = "first line\nsecond line";
link|flag
vote up 3 vote down

JLabel?

If you're using JLabel, you can use basic HTML in it

Try the following:

<html>Text<br>more text</html>

See this other answer

And upvote it too ;)

link|flag
vote up 1 vote down

I am not sure what you are asking for but you can use System.getProperty("line.separator"); to get the line separator for your operating system.

link|flag

Your Answer

Get an OpenID
or

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