`
AquariusM
  • 浏览: 143936 次
  • 性别: Icon_minigender_1
  • 来自: 南阳
社区版块
存档分类
最新评论

(转载)XML字符串格式化

 
阅读更多

转载自:http://blog.sina.com.cn/s/blog_5de427510100brr5.html

功能:对xml字符串进行格式化

依赖包:dom4j

import java.io.Reader;
import java.io.StringReader;
import java.io.StringWriter;
import java.io.Writer;


import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.SAXReader;
import org.dom4j.io.XMLWriter;


   
    public static String format(String str) throws IntercommunionUtilException {

        StringReader in=null;
        StringWriter out=null;
        try{
            SAXReader reader=new SAXReader();
            //创建一个串的字符输入流
            in=new StringReader(str);
            Document doc=reader.read(in);
            //创建输出格式
            OutputFormat formate=OutputFormat.createPrettyPrint();
            //创建输出
            out=new StringWriter();
            //创建输出流
            XMLWriter writer=new XMLWriter(out,formate);
            //输出格式化的串到目标中,格式化后的串保存在out中。
            writer.write(doc);
        } catch (IOException ioe){
            throw new IntercommunionUtilException("对xml字符串进行格式化时产生IOException异常",ioe);    
        } catch (DocumentException de){
            throw new IntercommunionUtilException("对xml字符串进行格式化时产生DocumentException异常",de);
        } finally{
            //关闭流
            quietClose(in);
            quietClose(out);
        }
        return out.toString();
      }    
    
   
    public static void quietClose(Reader reader){
        try{
            if(reader!=null){
                reader.close();
            }
        } catch(IOException ioe){
            logger.error("关闭Reader时出现异常", ioe);   
        }

    }

   
    public static void quietClose(Writer writer){
        try{
            if(writer!=null){
                writer.close();
            }
        } catch(IOException ioe){
            logger.error("关闭Writer时出现异常", ioe);
        }
    }   

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics