ImageVerifierCode 换一换
格式:DOCX , 页数:14 ,大小:18.45KB ,
资源ID:27083245      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/27083245.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(sax 和dom解析xml文件要点.docx)为本站会员(b****3)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

sax 和dom解析xml文件要点.docx

1、sax 和dom解析xml文件要点XML在不同的语言里解析方式都是一样的,只不过实现的语法不同而已。基本的解析方式有两种,一种叫SAX,另一种叫DOM。SAX是基于事件流的解析,DOM是基于XML文档树结构的解析。假设我们XML的内容和结构如下: ddviplinux m 30 本文使用JAVA语言来实现DOM与SAX的XML文档生成与解析。首先定义一个操作XML文档的接口XmlDocument 它定义了XML文档的建立与解析的接口。package com.alisoft.facepay.framework.bean; /* * * author hongliang.dinghl * 定义XM

2、L文档建立与解析的接口 */ public interface XmlDocument /* * 建立XML文档 * param fileName 文件全路径名称 */ public void createXml(String fileName); /* * 解析XML文档 * param fileName 文件全路径名称 */ public void parserXml(String fileName); 1.DOM生成和解析XML文档为 XML 文档的已解析版本定义了一组接口。解析器读入整个文档,然后构建一个驻留内存的树结构,然后代码就可以使用 DOM 接口来操作这个树结构。优点:整个文档

3、树在内存中,便于操作;支持删除、修改、重新排列等多种功能;缺点:将整个文档调入内存(包括无用的节点),浪费时间和空间;使用场合:一旦解析了文档还需多次访问这些数据;硬件资源充足(内存、CPU)。package com.alisoft.facepay.framework.bean; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream;

4、import java.io.PrintWriter; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.parsers.ParserConfigurationException; import javax.xml.transform.OutputKeys; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerConfigura

5、tionException; import javax.xml.transform.TransformerException; import javax.xml.transform.TransformerFactory; import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.do

6、m.NodeList; import org.xml.sax.SAXException; /* * * author hongliang.dinghl * DOM生成与解析XML文档 */ public class DomDemo implements XmlDocument private Document document; private String fileName; public void init() try DocumentBuilderFactory factory = DocumentBuilderFactory .newInstance(); DocumentBuilde

7、r builder = factory.newDocumentBuilder(); this.document = builder.newDocument(); catch (ParserConfigurationException e) System.out.println(e.getMessage(); public void createXml(String fileName) Element root = this.document.createElement(employees); this.document.appendChild(root); Element employee =

8、 this.document.createElement(employee); Element name = this.document.createElement(name); name.appendChild(this.document.createTextNode(丁宏亮); employee.appendChild(name); Element sex = this.document.createElement(sex); sex.appendChild(this.document.createTextNode(m); employee.appendChild(sex); Elemen

9、t age = this.document.createElement(age); age.appendChild(this.document.createTextNode(30); employee.appendChild(age); root.appendChild(employee); TransformerFactory tf = TransformerFactory.newInstance(); try Transformer transformer = tf.newTransformer(); DOMSource source = new DOMSource(document);

10、transformer.setOutputProperty(OutputKeys.ENCODING, gb2312); transformer.setOutputProperty(OutputKeys.INDENT, yes); PrintWriter pw = new PrintWriter(new FileOutputStream(fileName); StreamResult result = new StreamResult(pw); transformer.transform(source, result); System.out.println(生成XML文件成功!); catch

11、 (TransformerConfigurationException e) System.out.println(e.getMessage(); catch (IllegalArgumentException e) System.out.println(e.getMessage(); catch (FileNotFoundException e) System.out.println(e.getMessage(); catch (TransformerException e) System.out.println(e.getMessage(); public void parserXml(S

12、tring fileName) try DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document document = db.parse(fileName); NodeList employees = document.getChildNodes(); for (int i = 0; i employees.getLength(); i+) Node employee = employees.item(i);

13、 NodeList employeeInfo = employee.getChildNodes(); for (int j = 0; j employeeInfo.getLength(); j+) Node node = employeeInfo.item(j); NodeList employeeMeta = node.getChildNodes(); for (int k = 0; k employeeMeta.getLength(); k+) System.out.println(employeeMeta.item(k).getNodeName() + : + employeeMeta.

14、item(k).getTextContent(); System.out.println(解析完毕); catch (FileNotFoundException e) System.out.println(e.getMessage(); catch (ParserConfigurationException e) System.out.println(e.getMessage(); catch (SAXException e) System.out.println(e.getMessage(); catch (IOException e) System.out.println(e.getMes

15、sage(); 2.SAX生成和解析XML文档为解决DOM的问题,出现了SAX。SAX ,事件驱动。当解析器发现元素开始、元素结束、文本、文档的开始或结束等时,发送事件,程序员编写响应这些事件的代码,保存数据。优点:不用事先调入整个文档,占用资源少;SAX解析器代码比DOM解析器代码小,适于Applet,下载。缺点:不是持久的;事件过后,若没保存数据,那么数据就丢了;无状态性;从事件中只能得到文本,但不知该文本属于哪个元素;使用场合:Applet;只需XML文档的少量内容,很少回头访问;机器内存少;Java代码package com.alisoft.facepay.framework.bean

16、;import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.xml.sax.Attributes; import o

17、rg.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /* * * author hongliang.dinghl * SAX文档解析 */ public class SaxDemo implements XmlDocument public void createXml(String fileName) System.out.println(); public void parserXml(String fileName) SAXParserFactory saxfac = SAXParserFactory.n

18、ewInstance(); try SAXParser saxparser = saxfac.newSAXParser(); InputStream is = new FileInputStream(fileName); saxparser.parse(is, new MySAXHandler(); catch (ParserConfigurationException e) e.printStackTrace(); catch (SAXException e) e.printStackTrace(); catch (FileNotFoundException e) e.printStackT

19、race(); catch (IOException e) e.printStackTrace(); class MySAXHandler extends DefaultHandler boolean hasAttribute = false; Attributes attributes = null; public void startDocument() throws SAXException System.out.println(文档开始打印了); public void endDocument() throws SAXException System.out.println(文档打印结

20、束了); public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException if (qName.equals(employees) return; if (qName.equals(employee) System.out.println(qName); if (attributes.getLength() 0) this.attributes = attributes; this.hasAttribute = true; public

21、void endElement(String uri, String localName, String qName) throws SAXException if (hasAttribute & (attributes != null) for (int i = 0; i attributes.getLength(); i+) System.out.println(attributes.getQName(0) + attributes.getValue(0); public void characters(char ch, int start, int length) throws SAXE

22、xception System.out.println(new String(ch, start, length); package com.alisoft.facepay.framework.bean; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import javax.xml.parsers.ParserConfigurationException; import javax.xml

23、.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import org.xml.sax.Attributes; import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; /* * * author hongliang.dinghl * SAX文档解析 */ public class SaxDemo implements XmlDocument public void createXml(String fileName) Sys

24、tem.out.println(); public void parserXml(String fileName) SAXParserFactory saxfac = SAXParserFactory.newInstance(); try SAXParser saxparser = saxfac.newSAXParser(); InputStream is = new FileInputStream(fileName); saxparser.parse(is, new MySAXHandler(); catch (ParserConfigurationException e) e.printS

25、tackTrace(); catch (SAXException e) e.printStackTrace(); catch (FileNotFoundException e) e.printStackTrace(); catch (IOException e) e.printStackTrace(); class MySAXHandler extends DefaultHandler boolean hasAttribute = false; Attributes attributes = null; public void startDocument() throws SAXExcepti

26、on System.out.println(文档开始打印了); public void endDocument() throws SAXException System.out.println(文档打印结束了); public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException if (qName.equals(employees) return; if (qName.equals(employee) System.out.println

27、(qName); if (attributes.getLength() 0) this.attributes = attributes; this.hasAttribute = true; public void endElement(String uri, String localName, String qName) throws SAXException if (hasAttribute & (attributes != null) for (int i = 0; i attributes.getLength(); i+) System.out.println(attributes.ge

28、tQName(0) + attributes.getValue(0); public void characters(char ch, int start, int length) throws SAXException System.out.println(new String(ch, start, length); 3.DOM4J生成和解析XML文档DOM4J 是一个非常非常优秀的Java XML API,具有性能优异、功能强大和极端易用使用的特点,同时它也是一个开放源代码的软件。如今你可以看到越来越多的 Java 软件都在使用 DOM4J 来读写 XML,特别值得一提的是连 Sun 的 JAXM 也在用 DOM4J。Java代码package com.alisoft.facepay.framework.bean;import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.Writer; import java.util.Iterator; import org.dom4j.Document; import org.dom4j.Doc

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1