六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 46|回复: 0

JAVA读取XML

[复制链接]

升级  1.33%

14

主题

14

主题

14

主题

秀才

Rank: 2

积分
52
 楼主| 发表于 2013-2-3 10:40:08 | 显示全部楼层 |阅读模式
一.java类
package com.java.test;   

import org.w3c.dom.*;   
import javax.xml.parsers.*;   
import java.io.*;   

public class JavaReadXml {   
// Document可以看作是XML在内存中的一个镜像,那么一旦获取这个Document 就意味着可以通过对  
// 内存的操作来实现对XML的操作,首先第一步获取XML相关的Document  
private Document doc = null;   

public void init(String xmlFile) throws Exception {   
// 很明显该类是一个单例,先获取产生DocumentBuilder工厂  
// 的工厂,在通过这个工厂产生一个DocumentBuilder,  
// DocumentBuilder就是用来产生Document的  
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();   
DocumentBuilder db = dbf.newDocumentBuilder();   
// 这个Document就是一个XML文件在内存中的镜像  
doc = db.parse(new File(xmlFile));   
}   

// 该方法负责把XML文件的内容显示出来  
public void viewXML(String xmlFile) throws Exception {   
this.init(xmlFile);   
// 在xml文件里,只有一个根元素,先把根元素拿出来看看  
Element element = doc.getDocumentElement();   
System.out.println("根元素为:" + element.getTagName());   

NodeList nodeList = doc.getElementsByTagName_r("person");   
System.out.println("book节点链的长度:" + nodeList.getLength());   

Node fatherNode = nodeList.item(0);   
System.out.println("父节点为:" + fatherNode.getNodeName());   

// 把父节点的属性拿出来  
NamedNodeMap attributes = fatherNode.getAttributes();   

for (int i = 0; i < attributes.getLength(); i++) {   
Node attribute = attributes.item(i);   
System.out.println("book的属性名为:" + attribute.getNodeName()   
+ " 相对应的属性值为:" + attribute.getNodeValue());   
}   

NodeList childNodes = fatherNode.getChildNodes();   
System.out.println(childNodes.getLength());   
for (int j = 0; j < childNodes.getLength(); j++) {   
Node childNode = childNodes.item(j);   
// 如果这个节点属于Element ,再进行取值  
if (childNode instanceof Element) {   
// System.out.println("子节点名为:"+childNode.getNodeName()+"相对应的值为"+childNode.getFirstChild().getNodeValue());  
System.out.println("子节点名为:" + childNode.getNodeName()   
+ "相对应的值为" + childNode.getFirstChild().getNodeValue());   
}   
}   

}   

public static void main(String[] args) throws Exception {   
JavaReadXml parse = new JavaReadXml();   

// 我的XML文件  
parse.viewXML("person.xml");   
}   
}   

二.xml文件
<?xml version="1.0" encoding="UTF-8"?>   
<book>   
<person>   
<first>wang</first>   
<last>laohu</last>   
<age>25</age>   
<version>中国邮电出版社</version>   
</person>   
<person>   
<first>li</first>   
<last>junjia</last>   
<age>24</age>   
<version>清华大学出版社</version>   
</person>   
</book>  

三.输出结果

根元素为:book
book节点链的长度:2
父节点为:person
9
子节点名为:first相对应的值为wang
子节点名为:last相对应的值为laohu
子节点名为:age相对应的值为25
子节点名为:version相对应的值为中国邮电出版社
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表