gpt4 book ai didi

java - 如何通过java代码在属性文件中写入值

转载 作者:IT老高 更新时间:2023-10-28 20:46:28 24 4
gpt4 key购买 nike

我有一个问题。

我有一个属性文件。我想在该文件中存储一些值,并在需要时在代码中实现。有什么办法吗?

我正在使用 Properties 类来做到这一点..

最佳答案

使用 java.util.Properties 加载属性文件.

代码片段 -

Properties prop = new Properties();
InputStream in = getClass().getResourceAsStream("xyz.properties");
prop.load(in);

它提供Properties#setProperty(java.lang.String, java.lang.String)这有助于添加新属性。

代码片段 -

prop.setProperty("newkey", "newvalue");

您可以使用 Properties#store(java.io.OutputStream, java.lang.String) 保存这个新集

代码片段 -

prop.store(new FileOutputStream("xyz.properties"), null);

关于java - 如何通过java代码在属性文件中写入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22370051/

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