Java通过XML字符串生成XML物理文件

try {
FileWriter fw = new FileWriter(filePath + File.separator+ DateTools.getDateString(new Date(), "yyyyMMddHHmmss") + ".xml");
fw.write(xmlStr);
fw.flush();
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

 

你可能感兴趣的:(java,xml,字符串生成XML物理文件)