properties 文件的加载,修改保存
程序员文章站
2022-05-10 08:46:35
...
properties 文件的加载,修改保存
- properties 文件的加载
Properties prop = new Properties();
prop.load(this.getClass().getResourceAsStream("/conf.properties"));
prop.get("KEY");
- properties 文件的修改保存
JSONObject jsonObject = JSONObject.fromObject(str);
prop.setProperty("ys.Token", (String) JSONObject.fromObject(jsonObject.get("data")).get("accessToken"));
URL confUri = this.getClass().getResource("/conf.properties");
FileOutputStream fos = new FileOutputStream(new File(confUri.toURI()));
prop.store(fos, "new token");//文件名和路径
System.out.println(prop.get("ys.Token")+"new token");
上一篇: 大数据揭示大发展
下一篇: 去年的毛衣两年前就穿上了够豆笑吧