我试图从属性文件的文件路径中获取资源。
属性文件:
info_path=c:\Info\output
爪哇:
String path = ResourceBundle.getBundle("bundle_name").getString("info_path");
结果:C:信息输出
我需要设置文件:
info_path=c:\\Info\\output
这是默认行为吗?还是取决于文件编码?顺便说一下,该文件使用 SJIS 编码。
我试图从属性文件的文件路径中获取资源。
属性文件:
info_path=c:\Info\output
爪哇:
String path = ResourceBundle.getBundle("bundle_name").getString("info_path");
结果:C:信息输出
我需要设置文件:
info_path=c:\\Info\\output
这是默认行为吗?还是取决于文件编码?顺便说一下,该文件使用 SJIS 编码。