I tried to get a resource from a file path from a properties file.
Property File:
info_path=c:\Info\output
Java:
String path = ResourceBundle.getBundle("bundle_name").getString("info_path");
Result: C:Infooutput
I would need to set the file:
info_path=c:\\Info\\output
Is this the default behavior? or would it depend on the file encoding? The file is using SJIS encoding by the way.