자바 에서 dom4j 를 사용 하여 xml 분석(예시 코드)

5641 단어 자바dom4jxml
자바 에는 돔 과 Sax 라 는 두 가지 표준 해석 방식 이 있 지만
그러나 조작 하기 가 쉽 지 않 습 니 다.저 같은 초보 자 에 게 일부 코드 는 살 아 있 는 메스꺼움 입 니 다.
이 를 위해 위대 한 제3자 개발 팀 은 Jdom 과 Dom4j 등 도 구 를 개발 했다.
현재 의 추 세 를 감안 하여 우 리 는 여기 서 Dom4j 의 기본 적 인 용법 을 이야기 하고 재 귀 등 복잡 한 조작 과 관련 되 지 않 는 다.
Dom4j 의 용법 이 매우 많 습 니 다.홈 페이지 의 예제 가 좀 어렵 습 니 다.여 기 는 쓰 지 않 겠 습 니 다.
우선 xml 문 서 를 만들어 야 해석 할 수 있 습 니 다.
xml 문서:

<?xml version="1.0" encoding="UTF-8"?>
<books>
   <book id="001">
      <title>Harry Potter</title>
      <author>J K. Rowling</author>
   </book>
   <book id="002">
      <title>Learning XML</title>
      <author>Erik T. Ray</author>
   </book>
</books>
예제 1:List 목록 의 방식 으로 xml

import java.io.File;
import java.util.List;

import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

public class Demo {

 public static void main(String[] args) throws Exception {
  SAXReader reader = new SAXReader();
  File file = new File("books.xml");
  Document document = reader.read(file);
  Element root = document.getRootElement();
  List<Element> childElements = root.elements();
  for (Element child : childElements) {
   //
   /*List<Attribute> attributeList = child.attributes();
   for (Attribute attr : attributeList) {
    System.out.println(attr.getName() + ": " + attr.getValue());
   }*/

   //
   System.out.println("id: " + child.attributeValue("id"));

   //
   /*List<Element> elementList = child.elements();
   for (Element ele : elementList) {
    System.out.println(ele.getName() + ": " + ele.getText());
   }
   System.out.println();*/

   //
   System.out.println("title" + child.elementText("title"));
   System.out.println("author" + child.elementText("author"));
   //
   System.out.println();
  }
 }

}

예제 2:Iterator 교체 기 를 사용 하여 xml

import java.io.File;
import java.util.Iterator;

import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

public class Demo {
 public static void main(String[] args) throws Exception {
  SAXReader reader = new SAXReader();
  Document document = reader.read(new File("books.xml"));
  Element root = document.getRootElement();

  Iterator it = root.elementIterator();
  while (it.hasNext()) {
   Element element = (Element) it.next();

   //
   /*Iterator attrIt = element.attributeIterator();
   while (attrIt.hasNext()) {
    Attribute a  = (Attribute) attrIt.next();
    System.out.println(a.getValue());
   }*/

   //
   System.out.println("id: " + element.attributeValue("id"));

   //
   /*Iterator eleIt = element.elementIterator();
   while (eleIt.hasNext()) {
    Element e = (Element) eleIt.next();
    System.out.println(e.getName() + ": " + e.getText());
   }
   System.out.println();*/

   //
   System.out.println("title: " + element.elementText("title"));
   System.out.println("author: " + element.elementText("author"));
   System.out.println();
  }
 }
}

운행 결 과 를 분석 합 니 다.

예제 3:xml 문 서 를 만 들 고

import java.io.File;
import java.io.FileOutputStream;

import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.dom4j.io.OutputFormat;
import org.dom4j.io.XMLWriter;


public class Demo {
 public static void main(String[] args) throws Exception {
  Document doc = DocumentHelper.createDocument();
  //
  Element books = doc.addElement("books");
  //
  Element book1 = books.addElement("book");
  Element title1 = book1.addElement("title");
  Element author1 = book1.addElement("author");

  Element book2 = books.addElement("book");
  Element title2 = book2.addElement("title");
  Element author2 = book2.addElement("author");

  //
  book1.addAttribute("id", "001");
  //
  title1.setText("Harry Potter");
  author1.setText("J K. Rowling");

  book2.addAttribute("id", "002");
  title2.setText("Learning XML");
  author2.setText("Erik T. Ray");

  //
  OutputFormat format = OutputFormat.createPrettyPrint();
  //
  format.setEncoding("UTF-8");
  // File
  File file = new File("D:" + File.separator + "books.xml");
  // XMLWriter ,
  XMLWriter writer = new XMLWriter(new FileOutputStream(file), format);
  // ,write Document
  writer.write(doc);
 }
}

실행 결과 로 출력 합 니 다.

좋은 웹페이지 즐겨찾기