Is it possible to continue a long string on the next line in a Java properties file?
e.g., somehow
myStr=Hello
World
and when I get getProperty("myStr") it will return with "Hello World"?
|
Is it possible to continue a long string on the next line in a Java properties file? e.g., somehow
and when I get |
|||
|
|
|
A backslash at the end of a line lets you break across multiple lines, and whitespace that starts a line is ignored:
The Java docs put it this way:
|
||||
|
|
The backslash tells the application to continue reading the value onto the next line. ^^ |
|||
|
|