我目前正在加载这样的属性文件:
private Properties loadProperties(String filename) throws IOException{
InputStream in = ClassLoader.getSystemResourceAsStream(filename);
if (in == null) {
throw new FileNotFoundException(filename + " file not found");
}
Properties props = new Properties();
props.load(in);
in.close();
return props;
}
但是,目前我的文件位于scr \ user.properties路径。
但是当我想写一个属性文件时:
properties.setProperty(username, decryptMD5(password));
try {
properties.store(new FileOutputStream("user.properties"), null);
System.out.println("Wrote to propteries file!" + username + " " + password);
这段代码在我的项目的根文件夹级别生成一个新文件。
但我想要一个文件来写\ read。
因此该怎么做?
PS:当我想指定路径时,我得到“不允许修改文件...”
答案 0 :(得分:2)
创建新文件的原因是因为您在编写时尝试创建新文件。您应首先处理要作为File对象写入的user.properties,然后尝试写入它。
代码看起来像是
properties.setProperty(username, decryptMD5(password));
try{
//get the filename from url class
URL url = ClassLoader.getSystemResource("user.properties");
String fileName = url.getFile();
//write to the file
props.store(new FileWriter(fileName),null);
properties.store();
}catch(Exception e){
e.printStacktrace();
}