标签: java tomcat properties-file
是否可以在Tomcat中修改.properties文件,即向其中添加属性,而不是仅仅读取它们?
.properties
答案 0 :(得分:2)
您可以使用Properties#load()将它们加载到可修改的类似地图的结构中。使用Properties#setProperty()进行修改后,您只需使用Properties#store()将其保存回来。
Properties#load()
Properties#setProperty()
Properties#store()
另见:
java.util.Properties