You can escape every thing in properties file with Java Unicode:
\u003d
for=
\u0020
for whitespace
For example:
foo bar = barefoot
must be:
foo\u0020bar\u0020=\u0020barefoot
So will be:
key: "foo bar "
value: " barefoot"
You can escape every thing in properties file with Java Unicode:
\u003d
for =
\u0020
for whitespaceFor example:
foo bar = barefoot
must be:
foo\u0020bar\u0020=\u0020barefoot
So will be:
key: "foo bar "
value: " barefoot"