New line in Java for HTML and Changing HTML file

This commit is contained in:
Rahul Srivastava 2018-11-08 15:39:06 +05:30
parent b9b4cec7ae
commit 6dd09ae35d
2 changed files with 55 additions and 22 deletions

View File

@ -7,49 +7,63 @@ public class AddingNewLineToString {
String line2 = "Humpty Dumpty had a great fall."; String line2 = "Humpty Dumpty had a great fall.";
String para = ""; String para = "";
System.out.println("***New Line in a String in Java***");
//1. Using "\n" //1. Using "\n"
System.out.println("1. Using \\n"); System.out.println("1. Using \\n");
para = line1+"\n"+line2; para = line1 + "\n" + line2;
System.out.println(para); System.out.println(para);
//2. Using "\r\n" //2. Using "\r\n"
System.out.println("2. Using \\r\\n"); System.out.println("2. Using \\r\\n");
para = line1+"\r\n"+line2; para = line1 + "\r\n" + line2;
System.out.println(para); System.out.println(para);
//3. Using "\r" //3. Using "\r"
System.out.println("3. Using \\r"); System.out.println("3. Using \\r");
para = line1+"\r"+line2; para = line1 + "\r" + line2;
System.out.println(para); System.out.println(para);
//4. Using "\n\r" Note that this is not same as "\r\n" //4. Using "\n\r" Note that this is not same as "\r\n"
// Using "\n\r" is equivalent to adding two lines // Using "\n\r" is equivalent to adding two lines
System.out.println("4. Using \\n\\r"); System.out.println("4. Using \\n\\r");
para = line1+"\n\r"+line2; para = line1 + "\n\r" + line2;
System.out.println(para); System.out.println(para);
//5. Using System.lineSeparator() //5. Using System.lineSeparator()
System.out.println("5. Using System.lineSeparator()"); System.out.println("5. Using System.lineSeparator()");
para = line1+System.lineSeparator()+line2; para = line1 + System.lineSeparator() + line2;
System.out.println(para); System.out.println(para);
//6. Using System.getProperty("line.separator") //6. Using System.getProperty("line.separator")
System.out.println("6. Using System.getProperty(\"line.separator\")"); System.out.println("6. Using System.getProperty(\"line.separator\")");
para = line1+System.getProperty("line.separator")+line2; para = line1 + System.getProperty("line.separator") + line2;
System.out.println(para); System.out.println(para);
//Line break for HTML using <br> System.out.println("***HTML to rendered in a browser***");
System.out.println("Line break for HTML using <br>"); //1. Line break for HTML using <br>
para = line1+"<br>"+line2; System.out.println("1. Line break for HTML using <br>");
para = line1 + "<br>" + line2;
System.out.println(para);
//Line break for HTML when string is in <textarea> tag //2. Line break for HTML using &#10;
para = line1+"&#10;"+line2; System.out.println("2. Line break for HTML using &#10;");
para = line1+"&#13;"+line2; para = line1 + "&#10;" + line2;
System.out.println(para);
//Line break for HTML when string is in <pre> tag //3. Line break for HTML using &#13;
para = line1+"&#10;"+line2; System.out.println("3. Line break for HTML using &#13;");
para = line1+"&#10;&#13;"+line2; para = line1 + "&#13;" + line2;
para = line1+"<br>"+line2; System.out.println(para);
//4. Line break for HTML using &#10&#13;;
System.out.println("4. Line break for HTML using &#10;&#13;");
para = line1 + "&#10;&#13;" + line2;
System.out.println(para);
//5. Line break for HTML using \n
System.out.println("5. Line break for HTML using \\n");
para = line1 + "\n" + line2;
System.out.println(para);
} }
} }

View File

@ -1,12 +1,31 @@
<html> <html>
<body> <body>
Humpty Dumpty sat on a wall.<br>Humpty Dumpty had a great fall. Humpty Dumpty sat on a wall.<br>Humpty Dumpty had a great fall.<br>
Humpty Dumpty sat on a wall.&#10;Humpty Dumpty had a great fall.<br>
Humpty Dumpty sat on a wall.&#13;Humpty Dumpty had a great fall.<br>
Humpty Dumpty sat on a wall.&#10;&#13;Humpty Dumpty had a great fall.<br>
Humpty Dumpty sat on a wall.
Humpty Dumpty had a great fall.
<br> <br>
<textarea>Hello<br>Baeldung</textarea>
<textarea>Hello&#10;Baeldung</textarea> <textarea>Hello&#10;Baeldung</textarea>
<textarea>Hello&#13;Baeldung</textarea> <textarea>Hello&#13;Baeldung</textarea>
<pre>Humpty Dumpty sat on a wall.&#10;&#13;Humpty Dumpty had a great fall</pre> <textarea>Hello&#10;&#13;Baeldung</textarea>
<pre>Humpty Dumpty sat on a wall.&#13;Humpty Dumpty had a great fall</pre> <textarea>Hello.
<pre>Humpty Dumpty sat on a wall.&#10;Humpty Dumpty had a great fall</pre> Baeldung</textarea>
<br>
<pre>Humpty Dumpty sat on a wall.<br>Humpty Dumpty had a great fall.</pre>
<pre>Humpty Dumpty sat on a wall.&#10;Humpty Dumpty had a great fall.</pre>
<pre>Humpty Dumpty sat on a wall.&#13;Humpty Dumpty had a great fall.</pre>
<pre>Humpty Dumpty sat on a wall.&#10;&#13;Humpty Dumpty had a great fall.</pre>
<pre>Humpty Dumpty sat on a wall.
Humpty Dumpty had a great fall</pre>
<br>
<p>Humpty Dumpty sat on a wall.<br>Humpty Dumpty had a great fall</p> <p>Humpty Dumpty sat on a wall.<br>Humpty Dumpty had a great fall</p>
<p>Humpty Dumpty sat on a wall.&#10;Humpty Dumpty had a great fall</p>
<p>Humpty Dumpty sat on a wall.&#13;Humpty Dumpty had a great fall</p>
<p>Humpty Dumpty sat on a wall.&#10;&#13;Humpty Dumpty had a great fall</p>
<p>Humpty Dumpty sat on a wall.
Humpty Dumpty had a great fall</p>
</body> </body>
</html> </html>