gpt4 book ai didi

Java - 在运行时向属性文件添加新的条目对

转载 作者:行者123 更新时间:2023-12-01 17:33:21 24 4
gpt4 key购买 nike

我想在运行时将新的 NewKey-NewValue 对添加到我的配置属性文件中。我尝试过:

Properties p = new Properties();
p.load(fileinpustream ...);
...
p.setProperty("NewKey","NewValue");
p.store(outputstream, "comment");

但我总是在 setProperty 行上收到 NullPointerException 。有什么建议吗?

谢谢。

最佳答案

确保您的“NewValue”不null

这来自 Hashtable,java.util.Properties 的父级

...

public synchronized V put(K key, V value) {
// Make sure the value is not null
if (value == null) {
throw new NullPointerException();
}

...

关于Java - 在运行时向属性文件添加新的条目对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8787588/

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