Java Dom解析xml

Dom解析是将xml文件全部载入,组装成一颗dom树,然后通过节点以及节点之间的关系来解析xml文件,下面结合这个xml文件来进行dom解析。

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <books>
  3. <book id="12">
  4. <name>thinking in java</name>
  5. <price>85.5</price>
  6. </book>
  7. <book id="15">
  8. <name>Spring in Action</name>
  9. <price>39.0</price>
  10. </book>
  11. </books>

然后结合一张图来发现dom解析时需要注意的地方

Java Dom解析xml

在这里当我们得到节点book时,也就是图中1所画的地方,如果我们调用它的getChildNodes()方法,大家猜猜它的子节点有几个?不包
括它的孙子节点,thinking in
java这种的除外,因为它是孙子节点。它总共有5个子节点,分别是图中2、3、4、5、6所示的那样。所以在解析时,一定要小心,不要忽略空白的地方。

然后看代码来解析book.xml文件

DomParseService.java

  1. import java.io.InputStream;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import javax.xml.parsers.DocumentBuilder;
  5. import javax.xml.parsers.DocumentBuilderFactory;
  6. import org.w3c.dom.Document;
  7. import org.w3c.dom.Element;
  8. import org.w3c.dom.NodeList;
  9. import org.w3c.dom.Node;
  10. import com.xtlh.cn.entity.Book;
  11. public class DomParseService {
  12. public List<Book> getBooks(InputStream inputStream) throws Exception{
  13. List<Book> list = new ArrayList<Book>();
  14. DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
  15. DocumentBuilder builder = factory.newDocumentBuilder();
  16. Document document = builder.parse(inputStream);
  17. Element element = document.getDocumentElement();
  18. NodeList bookNodes = element.getElementsByTagName("book");
  19. for(int i=0;i<bookNodes.getLength();i++){
  20. Element bookElement = (Element) bookNodes.item(i);
  21. Book book = new Book();
  22. book.setId(Integer.parseInt(bookElement.getAttribute("id")));
  23. NodeList childNodes = bookElement.getChildNodes();
  24. //          System.out.println("*****"+childNodes.getLength());
  25. for(int j=0;j<childNodes.getLength();j++){
  26. if(childNodes.item(j).getNodeType()==Node.ELEMENT_NODE){
  27. if("name".equals(childNodes.item(j).getNodeName())){
  28. book.setName(childNodes.item(j).getFirstChild().getNodeValue());
  29. }else if("price".equals(childNodes.item(j).getNodeName())){
  30. book.setPrice(Float.parseFloat(childNodes.item(j).getFirstChild().getNodeValue()));
  31. }
  32. }
  33. }//end for j
  34. list.add(book);
  35. }//end for i
  36. return list;
  37. }
  38. }

Book.java用来组装数据和盛放数据

  1. public class Book {
  2. private int id;
  3. private String name;
  4. private float price;
  5. public int getId() {
  6. return id;
  7. }
  8. public void setId(int id) {
  9. this.id = id;
  10. }
  11. public String getName() {
  12. return name;
  13. }
  14. public void setName(String name) {
  15. this.name = name;
  16. }
  17. public float getPrice() {
  18. return price;
  19. }
  20. public void setPrice(float price) {
  21. this.price = price;
  22. }
  23. @Override
  24. public String toString(){
  25. return this.id+":"+this.name+":"+this.price;
  26. }
  27. }

测试使用单元测试如下ParseTest.java

    1. public class ParseTest extends TestCase{
    2. public void testDom() throws Exception{
    3. InputStream input = this.getClass().getClassLoader().getResourceAsStream("book.xml");
    4. DomParseService dom = new DomParseService();
    5. List<Book> books = dom.getBooks(input);
    6. for(Book book : books){
    7. System.out.println(book.toString());
    8. }
    9. }
    10. }
上一篇:用xml来编写动画


下一篇:python-操作缓存