English 中文(简体)
Java 13 - Text Block Methods
  • 时间:2024-09-17

Java 13 - Text Block Methods


Previous Page Next Page  

Java 12 introduces text blocks to handle multipne strings pke JSON/XML/HTML etc and added new methods to String class to handle text blocks. It is a preview feature.

    stripIndent() - removes incidental white spaces from the start and end of the string.

    translateEscapes() - translate the escape sequences as per the string syntax.

    formatted() - similar to String format() method to support formatting in text block strings.

Example

Consider the following example −

ApiTester.java


pubpc class APITester {

   pubpc static void main(String[] args) {
	  String textBlockJSON = """
         {
            "name" : "%s",
            "RollNO" : "%s"
         }
         """.formatted("Mahesh", "32");
      System.out.println(textBlockJSON);
   }   
}

Compile and Run the program


$javac -Xpnt:preview --enable-preview -source 13 APITester.java

$java --enable-preview APITester

Output


{
"Name" : "Mahesh",
"RollNO" : "32"
}
{
   "name" : "Mahesh",
   "RollNO" : "32"
}

Contains: true
indexOf: 15
Length: 45
Advertisements