62,623
社区成员
发帖
与我相关
我的任务
分享Properties prop = new Properties();
FileInputStream fis = new FileInputStream("...");
prop.load(fis);
fis.close();
String tmp = prop.getProperty("MAINHSM");
prop.setProperty("MAINHSM", prop.getProperty("BACKHSM"));
prop.setProperty("BACKHSM", tmp);
FileOutputStream fos = new FileOutputStream("...");
prop.store(fos, "");
fos.close();