我有一个像这样的属性文件:
[flags]
prop1=value
prop2=value
[patterns]
prop3=#.00
prop4=###,##0.00
[other]
prop5=value
当我处理文件时,不仅英镑符号被转义(#),而且我的所有属性都不正常。
我的代码是这样的:
Properties props = new Properties();
FileInputStream in = null;
try
{
in = new FileInputStream(PROP_FILE);
Reader reader = new InputStreamReader(in, StandardCharsets.UTF_8);
props.load(reader);
}
catch (IOException e)
{
// log exception
}
finally
{
if (in != null)
{
try
{
in.close();
}
catch (IOException e)
{
// log exception
}
}
}
props.setProperty("prop5", "otherValue");
try
{
OutputStreamWriter w = new OutputStreamWriter(new FileOutputStream(INI_FILE), StandardCharsets.UTF_8);
props.store(w, null);
}
catch (IOException e)
{
// log exception
}
我正在使用props.store()
因为在调用props.setProperty()
之后我不知道另一种保存属性文件的方法。
答案 0 :(得分:0)
所有的功劳都归功于Jon Skeet,指出Java Properties不是以这种方式使用的,而我需要的是Windows风格的.ini文件。由于这个建议,我记得很多年前我使用ini4j
,这就是我在这种情况下需要使用的。
解决方案非常简单:
try
{
Wini ini = new Wini(new File(PROP_FILE));
ini.put("others", "prop5", value); // "others" is the section, "prop5" the key, and "value" is self-explanatory.
ini.store(); // INI file is saved
}
catch (IOException e)
{
// log problem... do whatever!
}
使用ini4j
保存时,我的属性会保留在各个部分中,并且属性的顺序会被保留,特殊字符(如#)不会被转义;它解决了所有问题。