AJAX向Response留中输出Xml的办法计算机等级考试
文章作者 100test 发表时间 2010:01:01 12:26:42
来源 100Test.Com百考试题网
public static void outPrint(Document doc, HttpServletResponse response) throws IOException {
response.setCharacterEncoding("UTF-8").
response.setContentType("text/xml. charset=utf-8").
PrintWriter out = response.getWriter().
OutputFormat format = OutputFormat.createCompactFormat().
//去掉xml头
//format.setSuppressDeclaration(true).
//format.isPadText().
format.setEncoding("utf-8").
XMLWriter writer = new XMLWriter(out, format).
writer.write(doc).
writer.flush().
writer.close().
}
编辑特别推荐:
总结Java标准类库中类型相互转化的方法
实例讲解main()中方法调用的问题
一个Java小球撞击墙面的小程序