AJax技术

Java技巧:AJAX向Response留中输出Xml的办法

字号+ 作者:H5之家 来源:H5之家 2018-02-16 13:13 我要评论( )

publicstaticvoidoutPrint(Documentdoc,HttpServletResponseresponse)throwsIOException{response.setCharacterEncoding(

Java技巧:AJAX向Response留中输出Xml的办法

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(); }
转:
我之前忘记设置这个,最后不能在页面显示出xml内容。(下次要记住!)
response.setContentType("text/xml; charset=utf-8");

猜你在找

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • day01 ajax开发第一天学习笔记 100%纯手打并且无添加 联合开发网

    day01 ajax开发第一天学习笔记 100%纯手打并且无添加 联合开发网

    2018-02-16 08:13

  • 深入浅出Ajax学习笔记

    深入浅出Ajax学习笔记

    2018-02-16 08:12

  • Jquery Validation 中使用remote做ajax验证时遇到的问题

    Jquery Validation 中使用remote做ajax验证时遇到的问题

    2018-02-15 11:03

  • 征服AjaxWeb2.0开发技术详解(附光盘)

    征服AjaxWeb2.0开发技术详解(附光盘)

    2018-02-15 11:03

网友点评