怎样修改properties配置文件修改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样修改properties配置文件修改相关的知识,希望对你有一定的参考价值。

参考技术A public void writeVaule()

Properties pro=new Properties();
InputStream in=pro.getClass().getResourceAsStream("/dbConfig/dbsqlsever.properties");
try
pro.load(in);
pro.setProperty("driver", "mysql");
pro.setProperty("url", "jdbce");
pro.setProperty(username, "lijia");
pro.setProperty("password", "125487");OutputStream os = null;
os = new FileOutputStream(new File(pro.getClass().getResourceAsStream("/dbConfig/dbsqlsever.properties").toURI()));
pro.store(os, null);
os.flush();
os.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();

本回答被提问者和网友采纳

怎么修改jar包中的properties文件

把你的jar,右键选中,打开方式,选择WinRAR,找到你的properties文件,双击打开,修改你的内容,然后保存即可。 参考技术A 右键jar打开方式用winRAR打开那properties文件拷贝出来。。修改后 同样打开 然后拷贝进去

以上是关于怎样修改properties配置文件修改的主要内容,如果未能解决你的问题,请参考以下文章

如何修改properties数据配置文件

JavaWeb Tomcat 怎样实properties文件的实时加载

配置和修改springboot默认国家化文件

springboot application.properties 写多个配置文件怎么写

怎样修改ES4封装配置文件

配置文件.properties的使用