摘要:
/**向properties 中写入key=value*/ public static void writeProperties2(String filePath, String parameterName,String parameterValue) { Properties prop = new Properties(); InputStream fis = null; OutputStream fos =null; try { fis = new FileInputStream(filePath); prop.load(fis); fos= new FileOu... 阅读全文