用Java解析XML文档,最常用的有两种方法:使用基于事件的XML简单API (Simple API for XML)称为SAX和基于树和节点的文档对象模型(Document Object Module)称为DOM。

Sun公司提供了Java API for XML Parsing(JAXP)接口来使用SAX和DOM,通过JAXP,我们可以使用任何与JAXP兼容的XML解析器。 JAXP接口包含了三个包:

org.w3c.dom W3C推荐的用于XML标准规划文档对象模型的接口。

org.xml.sax用于对XML进行语法分析的事件驱动的XML简单API(SAX)

javax.xml.parsers解析器工厂工具,程序员获得并配置特殊的特殊语法分析器。

java XML parser

import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.xml.sax.SAXException;  public class DomParse {     public DomParse(){          DocumentBuilderFactory domfac=DocumentBuilderFactory.newInstance();          try {             DocumentBuilder dombuilder=domfac.newDocumentBuilder();             InputStream is=new FileInputStream("WebRoot/WEB-INF/hell.xml");             Document doc=dombuilder.parse(is);             Element root=doc.getDocumentElement();             NodeList books=root.getChildNodes();              if(books!=null){                 for(int i=0;i<books.getLength();i++){                     Node book=books.item(i);                     if(book.getNodeType()==Node.ELEMENT_NODE){                         String email=book.getAttributes().getNamedItem("email").getNodeValue();                         System.out.println(email);                         for(Node node=book.getFirstChild();node!=null;node=node.getNextSibling()){                             if(node.getNodeType()==Node.ELEMENT_NODE){                                 if(node.getNodeName().equals("name")){                                     String name=node.getNodeValue();                                     String name1=node.getFirstChild().getNodeValue();                                     System.out.println(name);                                     System.out.println(name1);                                 }                                  if(node.getNodeName().equals("price")){                                     String price=node.getFirstChild().getNodeValue();                                     System.out.println(price);                                 }                             }                         }                     }                 }             }         } catch (ParserConfigurationException e) {             e.printStackTrace();        } catch (FileNotFoundException e) {              e.printStackTrace();         } catch (SAXException e) {             e.printStackTrace();         } catch (IOException e) {             e.printStackTrace();         }     }      public static void main(String[] args)      {         new DomParse();     }     }

更多相关文章

  1. 如何实现XML文档和JTree之间转换
  2. 关于XML文档类型的详细介绍
  3. 有关文档大小的文章推荐8篇
  4. 从TypeScript的类中派生接口[每日前端夜话0xAE]
  5. Apollo 源码解析 —— Config Service 配置读取接口
  6. 芋道 Spring Boot API 接口文档 Swagger 入门
  7. 使用 apiDoc 为你的Node.js API 自动生成文档[每日前端夜话0x78]
  8. 面试官:高并发下重启服务,接口调用老是超时,你有什么解决办法?
  9. 如何实时主动监控你的网站接口是否挂掉并及时报警

随机推荐

  1. Mysql索引基础原理
  2. MySQL 示例数据库sakila
  3. mysql是否有postgreSQL一样的美元包围符
  4. 使用Powershell对MySQL运行SQL脚本
  5. ANSI Sql查询强制返回0条记录
  6. 不应该准备好的报表要快得多吗?
  7. 亚马逊AWS EC2云实例AMI安装LNMP环境(3)
  8. mysql的安装和卸载
  9. 《MySQL技术内幕——SQL编程》读书笔记(
  10. mysql 大数据量高效分页查询