WEB开发网
开发学院WEB开发Jsp dom4j中文问题解决方法。 阅读

dom4j中文问题解决方法。

 2008-01-05 18:48:39 来源:WEB开发网   
核心提示:1、文件形式: xmlWriter writer = null; /** 格式化输出,类型IE浏览一样 */ OutputFormat format = OutputFormat.createPRettyPrint(); /** 指定XML编码 */ format.setEncoding("GBK"

1、文件形式:
  xmlWriter writer = null;

   /** 格式化输出,类型IE浏览一样 */

   OutputFormat format = OutputFormat.createPRettyPrint();

   /** 指定XML编码 */

   format.setEncoding("GBK");
try{
     writer= new XMLWriter(new FileWriter(new File("test.xml")),format);//用FileOutputStream更好。
     writer.write(document);

    writer.close();  
 }
catch(IOException ioe){ioe.printStackTrace();}

 2、String形式,我现在做的框架中,是PO<-->XML--Servlet,不需要生成文件,搜索了半天没搜索出来,后来干脆自己试出来了。
StringWriter sw=new StringWriter();
XMLWriter writer = null;

 OutputFormat format = OutputFormat.createPrettyPrint();

format.setEncoding("GBK");
writer=new XMLWriter(format);
 writer.setWriter(sw);
 writer.write(document);
 System.out.println(sw.toString());


Tags:domj 问题

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接