Flask接口签名sign原理与实例代码浅析
286
2022-12-16
JAVA DOM解析XML文件过程详解
这篇文章主要介绍了java DOM解析XML文件过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
代码如下
import java.io.IOException;
import javax.xml.parsers.*;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
public class Domtest {
public static void main(String[] args) throws ParserConfigurationException, SAXException, IOException {
//创建一个DocumentBuilderFactory对象
DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();
//创建一个Doucumentbuild对象
DocumentBuilder db=dbf.newDocumentBuilder();
//解析对应的xml文件
Document doc=db.parse("tes.xml");
//根据标签名获取Node节点list
NodeList nodelist=doc.getElementsByTagName("book");
System.out.println("共有"+nodelist.getLength()+"本书");
//遍历每一个book节点
for(int i=0;ihttp:// System.out.println("第"+i+"本书"); //获取个book节点 //使用Node类型获取book Node book=nodelist.item(i); System.out.println("Name: "+book.getNodeName()+" Value: "+book.getNodeValue()+" Type: "+book.getNodeType()); //获取Node节点中的属性 NamedNodeMap attrs= book.getAttributes(); //遍历获取属性 for(int j=0;j Node x=attrs.item(j); //System.out.println(x.getNodeName()+" "+x.getNodeValue()+" "+x.getNodeType()); } //使用Element对象获取节点 Element node =(Element) nodelist.item(i); //使用Element对象下的getAttribute方法可以获取指定名字的属性值 String id=node.getAttribute("id"); System.out.println(id); String type=node.getAttribute("type"); System.out.println(type); //使用Node节点下的getChildNode可以获取Nodelist数组,以此进行循环解析 NodeList childnode=book.getChildNodes(); for(int j=0;j http:// Node x=childnode.item(j); if(x.getNodeType()==Node.ELEMENT_NODE){//当节点类型为Element时,获取该节点 //获取element类型的节点名 System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getLastChild().getNodeValue()+"/种类为"+x.getLastChild().getNodeType());// System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getTextContent()+"/种类为"+x.getNodeType());//getTextContent方法可以获取节点中所有的tTGqeClwWXext内容 将 } } } } } //为了将获取到的xml文件中内容保存下来,可以将内容保存到对象数组中一次来存储数据 注意点 1 空白换行符也算节点,所以遍历节点时需要注意这些无用的节点会混在list中 2 text类节点返回Name值都是#text,而Element类节点返回value值都是null,需要注意
System.out.println("第"+i+"本书");
//获取个book节点
//使用Node类型获取book
Node book=nodelist.item(i);
System.out.println("Name: "+book.getNodeName()+" Value: "+book.getNodeValue()+" Type: "+book.getNodeType());
//获取Node节点中的属性
NamedNodeMap attrs= book.getAttributes();
//遍历获取属性
for(int j=0;j Node x=attrs.item(j); //System.out.println(x.getNodeName()+" "+x.getNodeValue()+" "+x.getNodeType()); } //使用Element对象获取节点 Element node =(Element) nodelist.item(i); //使用Element对象下的getAttribute方法可以获取指定名字的属性值 String id=node.getAttribute("id"); System.out.println(id); String type=node.getAttribute("type"); System.out.println(type); //使用Node节点下的getChildNode可以获取Nodelist数组,以此进行循环解析 NodeList childnode=book.getChildNodes(); for(int j=0;j http:// Node x=childnode.item(j); if(x.getNodeType()==Node.ELEMENT_NODE){//当节点类型为Element时,获取该节点 //获取element类型的节点名 System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getLastChild().getNodeValue()+"/种类为"+x.getLastChild().getNodeType());// System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getTextContent()+"/种类为"+x.getNodeType());//getTextContent方法可以获取节点中所有的tTGqeClwWXext内容 将 } } } } } //为了将获取到的xml文件中内容保存下来,可以将内容保存到对象数组中一次来存储数据 注意点 1 空白换行符也算节点,所以遍历节点时需要注意这些无用的节点会混在list中 2 text类节点返回Name值都是#text,而Element类节点返回value值都是null,需要注意
Node x=attrs.item(j);
//System.out.println(x.getNodeName()+" "+x.getNodeValue()+" "+x.getNodeType());
}
//使用Element对象获取节点
Element node =(Element) nodelist.item(i);
//使用Element对象下的getAttribute方法可以获取指定名字的属性值
String id=node.getAttribute("id");
System.out.println(id);
String type=node.getAttribute("type");
System.out.println(type);
//使用Node节点下的getChildNode可以获取Nodelist数组,以此进行循环解析
NodeList childnode=book.getChildNodes();
for(int j=0;j
http:// Node x=childnode.item(j);
if(x.getNodeType()==Node.ELEMENT_NODE){//当节点类型为Element时,获取该节点
//获取element类型的节点名
System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getLastChild().getNodeValue()+"/种类为"+x.getLastChild().getNodeType());//
System.out.println("节点"+j+"的名字:"+x.getNodeName()+" 值:/"+x.getTextContent()+"/种类为"+x.getNodeType());//getTextContent方法可以获取节点中所有的tTGqeClwWXext内容 将
}
}
}
}
}
//为了将获取到的xml文件中内容保存下来,可以将内容保存到对象数组中一次来存储数据
注意点
1 空白换行符也算节点,所以遍历节点时需要注意这些无用的节点会混在list中
2 text类节点返回Name值都是#text,而Element类节点返回value值都是null,需要注意
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~