美文网首页
写出到xml文档注意细节

写出到xml文档注意细节

作者: 我是邱邱 | 来源:发表于2018-04-22 13:44 被阅读0次

    1.指定输出格式:

    紧凑的格式,去除了空格和换行,项目上线的时候:

    OutputFormat outputFormat=OutputFormat.createCompactFormat(); 

    漂亮的格式,有空格和换行,开发调试的时候使用:

     OutputFormat outputFormat=OutputFormat.createPrettyPrint();

    2.指定生成的xml文档的编码

        outputFormat.setEncoding("utf-8");同时影响了xml保存时的编码 和  xml文档声明时的encoding的编码(xml文档解析时的编码)

    结论:使用该方法生成的xml文档避免了中文乱码问题。

    相关文章

      网友评论

          本文标题:写出到xml文档注意细节

          本文链接:https://www.haomeiwen.com/subject/zwwqlftx.html