forked from wesleyegberto/java-new-features
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextBlocksExample.java
More file actions
31 lines (28 loc) · 737 Bytes
/
TextBlocksExample.java
File metadata and controls
31 lines (28 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
public class TextBlocksExample {
public static void main(String[] args) {
// Error (same line)
// String name = """Pat Q. Smith""";
// 3 double-quote must be followed by line terminator (new line)
String niceJson = """
{
"name": "Odair Jose",
"language": "Java"
}"""; // same line to not append \n at the end
System.out.println(niceJson);
// the identation is kept based on the most left char of block (incidental white spaces)
String html = """
<html>
<body>
<p>Hello World.</p>
</body>
</html>
"""; // will append a \n at the end
System.out.println(html);
String badJson = """
{
"name": "Odair Jose",
"language": "Java"
}""";
System.out.println(badJson);
}
}