最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp 读取XML的类库之DOM解析 xml实例教程
时间:2022-06-29 00:43:45 编辑:袖梨 来源:一聚教程网
jsp教程 读取XML的类库之DOM解析 xml实例教程
xml文件:
测试中心
package test.xml;
/**
* 测试四种读取XML的类库。DOM,SAX,JDOM,DOM4J
* 注意速度不好比较,因为第一个很吃亏。
*
*/
public class TestXML {
public static void main(String[] args) {
// DOM解析
TestXMLByDOM.main(null);
// SAX解析
TestXMLBySAX.main(null);
// JDOM解析
TestXMLByJDOM.main(null);
// DOM4J解析
TestXMLByDOM4J.main(null);
}
}
DOM
package test.xml;
import java.io.File;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
/**
* 使用 DOM 读取XML文件。
*
*/
public class TestXMLByDOM {
public static void main(String[] args) {
long lasting = System.currentTimeMillis();
System.out.println("Read By DOM");
try {
// xml文件
File f = new File("text.xml");
// 构造dom
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
// 解析文件
Document doc = builder.parse(f);
// 直接读取里面节点为VALUE的
NodeList nl = doc.getElementsByTagName("VALUE");
for (int i = 0; i < nl.getLength(); i++) {
System.out.print("车牌号码:"
+ doc.getElementsByTagName("NO").item(i).getFirstChild().getNodeValue());
System.out.println("车主地址:"
+ doc.getElementsByTagName("ADDR").item(i).getFirstChild().getNodeValue());
}
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("运行时间:" + (System.currentTimeMillis() - lasting) + "毫秒");
}
}
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21