I am new in java. I have string like " I am a boy". I want to print like this way " I (\n new line) am (\n new line) a (\n new line) boy".
Can anybody help me?
|
|
|
|||||
|
|
Try:
|
||||
|
|
|
If you simply want to print a newline in the console you can use ´\n´ for newlines. If you want to break text in swing components you can use html:
|
|||
|
|
|
If you want to have your code os-unspecific you should use println for each word
because Windows uses "\r\n" as newline and unixoid systems use just "\n" println always uses the correct one |
|||
|
|
|
It can be done several ways. I am mentioning 2 simple ways.
|
|||
|
|