我想写入 *.properties 文件。这就是我的代码我如何做到这一点:
properties = loadProperties("user.properties");//loads the properties file
properties.setProperty(username, password);
try {
properties.store(new FileOutputStream("user.properties"), null);
System.out.println("Wrote to propteries file!" + username + " " + password);
我没有得到异常,但我也没有将输出写入文件。
这也是我的文件结构:
我很感谢你的回答!!!
更新
我加载我的属性文件:
InputStream in = ClassLoader.getSystemResourceAsStream(filename);
我的问题是,如何从特定路径加载它?
这是我的“新”文件结构: