代码非常简单:如果属性文件不存在,则必须创建它(Java JDK1.6,Swing):
try {
//loads the properties file
prop.load(new FileInputStream("Config/prop.properties"));
} catch (IOException ex) {
// if properties doesn't exist yet : create it.
prop.store(new FileOutputStream("Config/prop.properties"), null);
}
这已经工作了2个多月而没有出错。我最近对应用程序进行了一次小更新(与此代码完全无关),它突然发出了NullpointerExceptions:
有没有人知道这样的事情怎么可能?这段代码怎么会突然停止工作?
感谢您的帮助!