At times you may have a String in Java that has to be initialized as a multi-line string to make it clear to read, in such case you can declare a String object in multiple lines as below.
Example 1:
package org.code2care.java.examples;
public class JavaMultiLineString {
public static void main(String[] args) {
String multiLineStringExample = "This is a multi-line string line 1.\n" +
"This is a multi-line string line 2.\n" +
"This is a multi-line string line 3.";
System.out.println(multiLineStringExample);
}
}
As you can see we have split the lines as sub-strings and made use of the string concatenation operator + as well as the new line character (\n) to display the output in new lines as well.
Example 2: Using Java 15 triple double quotes
package org.code2care.java.examples;
public class JavaMultiLineString {
public static void main(String[] args) {
String multiLineStringExample = """
This is a multi-line string line 1.
This is a multi-line string line 2.
This is a multi-line string line 3.
""";
System.out.println(multiLineStringExample);
}
}
Output:
-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Java,
- Convert Java Map Collection Object to JSON String using Jackson
- Java Stream flatmap() Examples
- [Fix] Instant java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Years
- How to run Java Unit Test cases with Apache Maven?
- How to check if Java main thread is alive
- [Fix] java: incompatible types: incompatible parameter types in lambda expression error
- Parsing CSV file using Java code example (Comma Separated File)
- Unhandled exception type InterruptedException : Java Threads
- Native getClass() method from java.lang.Object Class Explained with examples.
- Java Jackson ObjectMapper Class with Examples
- Java 8 Streams map() with examples
- Java 8 - Convert List to Map Examples
- IntelliJ: Error: Could not find or load main class, java.lang.ClassNotFoundException
- Java Stream with Multiple Filters Example
- How to Clear StringJoiner in Java 8
- Spring 5 IoC Example with application Context XML (ClassPathXmlApplicationContext) and Gradle.
- How to get end of line (EOL) or new line character \r \n in Java
- Spring Boot CRUD Examples using JDBCTemplate
- Delete a File in Java with Examples
- Implementing Insertion Sort Algorithm in Java Program
- Java JDBC Batch Update Example with PreparedStatement
- Java JDBC Select Multiple Records from table as List using PreparedStatement
- [Hibernate] The method buildSessionFactory() from the type Configuration is deprecated
- How to fix Java HTTP java.net.UnknownHostException
- Java 8 Display time in 12 hour AM PM format
More Posts:
- Fix: EOFError Exception in Python - Python
- [Maven] Multiple annotations found at this line pom.xml CoreException, ArtifactResolutionException - Java
- How to exit from nano command - Linux
- How to save webpage as pdf using macOS Safari - MacOS
- How to Pretty Print JSON in PHP - PHP
- Get MD5 Hash as Checksum of a String in Python - Python
- Python 3.x : How to Convert String to Bytes - Python
- How to create alias in macOS - MacOS