学生名单><姓名>张三姓名><姓名>李四<奖励>一等奖学金奖励>姓名>学生名单>"> <学生名单><姓名>张三姓名><姓名>李四<奖励>一等奖学金奖励>姓名>学生名单>" />
欢迎来到天天文库
浏览记录
ID:6128369
大小:117.00 KB
页数:16页
时间:2018-01-04
《xml基础教程2版第第4章(dom解析器)代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第4章DOM解析器4.1DOM解析器例子1example4_1.xml<学生名单><姓名>张三姓名><姓名>李四<奖励>一等奖学金奖励>姓名>学生名单>JAXPOne.javaimportorg.w3c.dom.*;importjavax.xml.parsers.*;importjava.io.*;publicclassJAXPOne{publicstaticvoidmain(Stringargs[]){try{DocumentBuilderFactoryfactory=
2、DocumentBuilderFactory.newInstance();DocumentBuilderdomPaser=factory.newDocumentBuilder();Documentdocument=domPaser.parse(newFile("example4_1.xml"));Elementroot=document.getDocumentElement();StringrootName=root.getNodeName();System.out.println("XML文件根节点的名字:"+rootName);NodeListnodel
3、ist=root.getElementsByTagName("姓名");intsize=nodelist.getLength();for(intk=0;k4、4.2节点的类型例子2example4_2.xml<雇员列表><雇员><姓名>张三姓名><年龄>25岁年龄><工资>3190元/月工资>雇员><雇员><姓名>李四姓名><年龄>35岁年龄><工资>4320元/月工资>雇员>雇员列表>JAXPTwo.javaimportorg.w3c.dom.*;importjavax.xml.parsers.*;importjava.io.*;publicclassJAXPTwo{publicstaticvoidmai5、n(Stringargs[]){try{DocumentBuilderFactoryfactory=DocumentBuilderFactory.newInstance();DocumentBuilderdomParser=factory.newDocumentBuilder();78Documentdocument=domParser.parse(newFile("example6_2.xml"));NodeListnodeList=document.getChildNodes();output(nodeList);}catch(Exceptione){S6、ystem.out.println(e);}}publicstaticvoidoutput(NodeListnodeList){//output是一个递归方法intsize=nodeList.getLength();for(intk=0;k7、);}if(node.getNodeType()==Node.ELEMENT_NODE){ElementelementNode=(Element)node;Stringname=elementNode.getNodeName();System.out.print(name+":");NodeListnodes=elementNode.getChildNodes();output(nodes);//递归调用}}}}4.4Element节点例子3example4_3.xml<商品列表><商品8、名称分类="家电">电视机商品名称>78<商品名
4、4.2节点的类型例子2example4_2.xml<雇员列表><雇员><姓名>张三姓名><年龄>25岁年龄><工资>3190元/月工资>雇员><雇员><姓名>李四姓名><年龄>35岁年龄><工资>4320元/月工资>雇员>雇员列表>JAXPTwo.javaimportorg.w3c.dom.*;importjavax.xml.parsers.*;importjava.io.*;publicclassJAXPTwo{publicstaticvoidmai
5、n(Stringargs[]){try{DocumentBuilderFactoryfactory=DocumentBuilderFactory.newInstance();DocumentBuilderdomParser=factory.newDocumentBuilder();78Documentdocument=domParser.parse(newFile("example6_2.xml"));NodeListnodeList=document.getChildNodes();output(nodeList);}catch(Exceptione){S
6、ystem.out.println(e);}}publicstaticvoidoutput(NodeListnodeList){//output是一个递归方法intsize=nodeList.getLength();for(intk=0;k7、);}if(node.getNodeType()==Node.ELEMENT_NODE){ElementelementNode=(Element)node;Stringname=elementNode.getNodeName();System.out.print(name+":");NodeListnodes=elementNode.getChildNodes();output(nodes);//递归调用}}}}4.4Element节点例子3example4_3.xml<商品列表><商品8、名称分类="家电">电视机商品名称>78<商品名
7、);}if(node.getNodeType()==Node.ELEMENT_NODE){ElementelementNode=(Element)node;Stringname=elementNode.getNodeName();System.out.print(name+":");NodeListnodes=elementNode.getChildNodes();output(nodes);//递归调用}}}}4.4Element节点例子3example4_3.xml<商品列表><商品
8、名称分类="家电">电视机商品名称>78<商品名
此文档下载收益归作者所有