我有这段代码用于在 Eclipse 中保存和加载属性文件。我创建了一个 Eclipse 应用程序项目。
Properties properties = new Properties();
try {
String propertyFilePath = "smcho.properties";
// properties.load(new FileInputStream(propertyFilePath));
properties.setProperty("database", "values");
properties.store(new FileOutputStream(propertyFilePath), null);
// Now, re-read the property file
properties.load(new FileInputStream(propertyFilePath));
System.out.println(properties.getProperty("database"));
} catch (IOException e) {
e.printStackTrace();
}
它工作正常,但我无法smcho.properties
在我的计算机中找到该文件。当我将文件路径设置为绝对路径时,文件将从路径存储和加载。仅使用属性文件名保存属性文件在哪里?