AJAX向Response留中输出Xml的办法

2014-11-19 02:34:59 · 作者: · 浏览: 19

  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();


  }


  编辑特别推荐: