Properties props2 = new Properties();// 属性聚集对象
fis = new FileInputStream(path + "/jeesite.properties");
//必须要先获得properties,否则之前的properties内容将丧失
props2.load(fis);
if (fis != null) {
fis.close();
}
//fos 输出流必须要在 fis输入流关闭以后能力获得,否则将会把properties文件清空
fos = new FileOutputStream(path + "/jeesite.properties");
Map<String ,String[]> map2 = request.getParameterMap();
for (Map.Entry<String, String[]> entry : map2.entrySet()) {
//保留,并参加注释
String key=entry.getKey();
if(key.equals("update")) continue;
props2.setProperty(key, entry.getValue()[0]);
props2.store(fos, "Update "" + key + "" value");
}
Properties props2 = new Properties();// 属性聚集对象