获取xml节点值和属性值.doc

获取xml节点值和属性值.doc

ID:59334292

大小:18.50 KB

页数:2页

时间:2020-09-04

获取xml节点值和属性值.doc_第1页
获取xml节点值和属性值.doc_第2页
资源描述:

《获取xml节点值和属性值.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、获取xml节点值和属性值Java实现xml节点和属性值的获取importorg.w3c.dom.*;  importjavax.xml.parsers.*;  importjava.io.*;  publicclassParse{  //Document可以看作是XML在内存中的一个镜像,那么一旦获取这个Document就意味着可以通过对  //内存的操作来实现对XML的操作,首先第一步获取XML相关的Document  privateDocumentdoc=null;  publicvoidinit

2、(StringxmlFile)throwsException{  //很明显该类是一个单例,先获取产生DocumentBuilder工厂  //的工厂,在通过这个工厂产生一个DocumentBuilder,  //DocumentBuilder就是用来产生Document的  DocumentBuilderFactorydbf=DocumentBuilderFactory.newInstance();  DocumentBuilderdb=dbf.newDocumentBuilder();  //这个

3、Document就是一个XML文件在内存中的镜像  doc=db.parse(newFile(xmlFile));  }  //该方法负责把XML文件的内容显示出来  publicvoidviewXML(StringxmlFile)throwsException{  this.init(xmlFile);  //在xml文件里,只有一个根元素,先把根元素拿出来看看  Elementelement=doc.getDocumentElement();  System.out.println("根元素为:"

4、+element.getTagName());  NodeListnodeList=doc.getElementsByTagName("dbstore");  System.out.println("dbstore节点链的长度:"+nodeList.getLength());  NodefatherNode=nodeList.item(0);  System.out.println("父节点为:"+fatherNode.getNodeName());  //把父节点的属性拿出来  NamedNodeM

5、apattributes=fatherNode.getAttributes();  for(inti=0;i

6、etChildNodes();  System.out.println(childNodes.getLength());  for(intj=0;j

7、相对应的值为"+childNode.getFirstChild().getNodeValue());  System.out.println("子节点名为:"+childNode.getNodeName()+"相对应的值为"+childNode.getFirstChild().getNodeValue());  }  }  }  publicstaticvoidmain(String[]args)throwsException{  Parseparse=newParse();  //我的XML文件  

8、parse.viewXML("netct.xml");  }  }

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。