文件名称:java xml解析
文件大小:1KB
文件格式:RAR
更新时间:2014-09-04 10:21:30
java xml解析
用java 解析xml
两个重要的方法说明
/**
* 获得某节点下的某个子节点(指定子节点名称,和某个属性的值)
* 即获取parentElement下名字叫childName,并且属性attributeName的值为attributeValue的子结点
* @param parentElement 要获取子节点的那个父节点
* @param childName 要获取的子节点名称
* @param attributeName 要指定的属性名称
* @param attributeValue 要指定的属性的值
* @return 符合条件的子节点
* @throws Exception 子结点不存在或有多个符合条件的子节点
*
*/
public static Element getChildElement( Element parentElement, String childName, String attributeName, String attributeValue ) throws Exception {
/**
* 得到某节点下的某个子节点(通过指定子节点名称)
* 即获取parentElement下名字叫childName的子节点
* @param parentElement 要获取子节点的父节点
* @param childName 要获取的子节点名称
* @return 符合条件的子节点
* @throws Exception 找不到符合条件的子结点或找到多个符合条件的子节点
*/
public static Element getChildElement( Element parentElement, String childName ) throws Exception {
【文件预览】:
XmlManager.java