我正在使用 java 来操作属性文件。我有一个要求,比如我必须在更新之前注释掉一个属性值并添加具有新值的属性。喜欢
路径=c:\
我更新后应该是这样的
#path=c:\
路径=c:\my_folder
有可能做到这一点吗?下面是我用于编辑属性文件的代码。
Properties prop=new Properties();
String currentDirectary=System.getProperty("testDir");
String path=currentDirectary+"/test.Properties";
FileOutputStream out=new FileOutputStream(path,true);
prop.setProperty("path","c:\\my_folder");
prop.store(out, null);