java-properties icon indicating copy to clipboard operation
java-properties copied to clipboard

Node module to read and interpolate Java .properties files

Results 3 java-properties issues
Sort by recently updated
recently updated
newest added

https://repl.it/@AndrewBradley/AlienatedNaturalRuntimelibrary Here's an example that fails to parse: ``` build.title=Build \#71 ``` JSON does not allow arbitrary characters to be escaped, so parsing `\#` fails.

When I read property param from java properties file like: `param = \\\\value` I get: \value The first escaped backslash is isgnored. Expected read result: \\\\value

Both `#` and `!` can be used for comments in property-files. Furthermore, comment marker need not be the first character of a line, but the first non-whitespace character. See [Properties.load()](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html#load-java.io.Reader-)...