gpt4 book ai didi

java - 重启程序后读取属性文件

转载 作者:行者123 更新时间:2023-11-30 07:05:50 25 4
gpt4 key购买 nike

我试图将我的配置数据保存在 config.properties 文件中。我正在这样保存我的属性:

public static void setProperty(Parameter property) {

// set the property's value
prop.setProperty(property.getIndex(), property.getValue());

// save properties to project root folder
try {
prop.store(output, null);
} catch (IOException e) {
e.printStackTrace();
}
}

并像这样加载它们:

public static String getProperty(String componentName) {

// get the property value
return prop.getProperty(componentName);
}

一切正常,但是当我重新启动我的程序时,我没有任何属性了。我在程序开头调用以下方法来加载我的属性文件:

static String FILE = "config.properties";
static InputStream input;
static OutputStream output;
static Properties prop = new Properties();

public static void loadExistingProperties() {
try {
input = new FileInputStream(FILE);
output = new FileOutputStream(FILE);

// load properties from file
prop.load(input);
System.out.println("amount of saved properties: " + prop.size());

} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

谁能告诉我为什么在重新启动程序后我再也找不到我的属性了?我试图让我的 prop 错误的方式可能吗?我不知道如何以其他方式做到这一点。

最佳答案

loadExistingProperties() 中,您为同一文件打开了 FileInputStreamFileOutputStream,但您只想从该文件中读取.调用 FileOutputStream 将在您读取文件之前删除文件的内容。只需删除该行即可。

关于java - 重启程序后读取属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26277934/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com