我寫的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();
}
的filepath是d:\ filelog.txt
雖然寫,控制檯打印像..
newFilePath D:\filelog.txt
但是,當我打開屬性文件,內容就像。
FILEPATH=D\:\\filelog.txt.
任何人都建議我,我真的在我這裏..
哦..!我發現了這個錯誤。我使用ResourceBundle從屬性文件中獲取字符串值。無論如何,謝謝你指出這一點。現在一切都很好。 – SanCJ