1. 程式人生 > >使用dom4j處理xml操作xml數據

使用dom4j處理xml操作xml數據

public oid The AR pri stat info ack div

使用dom4j處理xml操作xml數據

示例代碼:

public class TestDom4j {

  public static void main(String[] args) {
    String xml="<lan><name>java</name><ide>eclipse</ide></lan>";
    try {
      
      
      Document document=DocumentHelper.parseText(xml);
      System.out.println(document.asXML());
      
    } 
catch (DocumentException e) { e.printStackTrace(); } } }

結果:

技術分享圖片

解析:

使用DocumentHelper.parseText();將字符串轉換成document對象
直接使用document.asXML()就可以這document轉換成字符串對象

使用dom4j處理xml操作xml數據