我正在处理的这个项目需要一个配置文件(属性)。问题是 Properties 实例无法从文件加载(没有异常,没有可见的问题),尽管它可以正确存储。
因为我有一个默认 HashMap,所以任何不存在的属性都将其默认值放在 Properties 实例中,然后该实例存储所有内容,以便在更新生产服务器时无缝添加新属性。
我已经跟踪这个错误几个小时了,但我无法修复它。我已经阅读了 StackOverflow 上的几十个问题以及其他网站上的代码示例。没有任何帮助。
我还没有删除它并改用 DB 的一个原因是 JDBC 驱动程序 URL、用户和密码也存储在该文件中。请注意,该文件正在被读取并写入硬盘驱动器。
由于默认系统将内容放置到位,即使在我尝试读取时文件不存在,保存后它也会出现,但下一次运行仍然不会读取任何内容。我在更改设置后注意到了这个错误,并在几次运行后检查了文件,令我震惊的是,所有值都是默认值。
当前发生的情况如下: 1) 无论文件是否存在,Properties 都不会加载任何内容。2) 由于 Properties 实例中没有任何内容,因此它填充了默认值。3) 实例现在将保存,用默认值覆盖文件。
以下是所有相关代码:
private static Properties getConfig(){
Properties properties = new Properties();
File cfgFile = new File("data/titallus.properties");
try{
if(cfgFile.createNewFile()){
System.out.println("Config file not found. A default config file will be created automatically.");
}
FileReader reader = new FileReader(cfgFile);
FileWriter writer = new FileWriter(cfgFile);
properties.load(reader);
reader.close();
System.out.println(properties); // Debug, always prints '{}'
for(String k : defaults.keySet()){
if(!properties.containsKey(k)){
properties.setProperty(k, defaults.get(k));
}
}
properties.store(writer, "Titallus Configuration File");
writer.close();
}catch(Exception e){
e.printStackTrace();
System.exit(-1);
}
return properties;
}
我已经尝试了我能想到的一切,但无济于事。我还有一个用于多语言支持的 Properties 子类,它工作得很好。
有谁知道如何解决这个问题,或者至少有另一种解决方法?