小编典典

从属性文件中删除键和值?

java

我想删除存储在属性文件中的键和值。我怎样才能做到这一点????


阅读 217

收藏
2020-11-23

共1个答案

小编典典

首先load()使用java.util.PropertiesAPI。

Properties properties = new Properties();
properties.load(reader);

然后,您可以使用该remove()方法。

properties.remove(key);

最后将store()其保存到文件中。

properties.store(writer, null);

也可以看看:

2020-11-23