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 g
myStr = Hello \ World
The backslash tells the application to continue reading the value onto the next line. ^^