从属性文件中删除键和值?
我想删除存储在属性文件中的键和值。我该怎么办?
I want to delete key and value which is stored in a property file. How can i do that????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想删除存储在属性文件中的键和值。我该怎么办?
I want to delete key and value which is stored in a property file. How can i do that????
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
首先
load()
使用java.util.Properties
API。然后您可以使用
remove()
方法。最后
store()
将其保存到文件中。另请参阅:
First
load()
it using thejava.util.Properties
API.Then you can use the
remove()
method.And finally
store()
it to the file.See also:
在这里您可以看到我可以使用remove()方法删除键值对。
然而,remove() 方法是 HashTable 对象的一部分。
它也可以在属性中使用,因为属性是 HashTable 的子类
Here you can see that I could remove a key value pair using remove() method.
However the remove() method is a part of the HashTable object.
It is also available in properties because properties is a subclass of HashTable