我正在将FILEPATH参数写入属性文件,如下所示。
String newFilePath = txtFilepath.getText();
Properties prop = new Properties();
java.io.File propFile = new File("src/com/app/tool/properties/settings.properties");
prop.setProperty("FILEPATH", newFilePath);
System.out.println("newFilePath "+newFilePath);
try {
prop.store(new FileOutputStream(propFile), "New File location");
} catch (IOException ex) {
ex.printStackTrace();
}
文件路径是 D:\filelog.txt
写入时,控制台打印如下..
newFilePath D:\filelog.txt
但是当我打开属性文件时,内容就像..
FILEPATH=D\:\\filelog.txt.
任何人都建议我,我真的在这里 m(i)essing ..?