字符串生成xml文件

前端之家收集整理的这篇文章主要介绍了字符串生成xml文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/** * 字符串,生成xml文件 * @param str * @param fileName * @throws IOException */ public void strChangeXML(String str,String fileName ) throws IOException { SAXReader saxReader = new SAXReader(); Document document; try { document = saxReader.read(new ByteArrayInputStream(str.getBytes())); OutputFormat format = OutputFormat.createPrettyPrint(); /** 指定XML字符集编码 */ format.setEncoding("UTF-8"); /** 将document中的内容写入文件中 */ XMLWriter writer = new XMLWriter(new FileWriter(new File(fileName)),format); writer.write(document); writer.close(); } catch (DocumentException e) { // TODOAuto-generatedcatchblock logger.error(e.getMessage()); } } 原文链接:https://www.f2er.com/xml/300410.html

猜你在找的XML相关文章