java读取解析xml文件实例

如何在Java中读取解析文件呢?下面小编为大家整理了java读取解析xml文件实例,希望能帮到大家!

java读取解析xml文件实例

读取本地的xml文件,通过DOM进行解析,DOM解析的特点就是把整个xml文件装载入内存中,形成一颗DOM树形结构,树结构是方便遍历和和操纵。

DOM解析的特性就是读取xml文件转换为 dom树形结构,通过节点进行遍历。

这是W3c关于节点的概念

如果xml中包含有大量的数据,由于dom一次性把xml装入内存中的特性,所以dom不适合于包含大量数据的'xml解析。当包含有大量xml的时候,用SAX进行解析比较节省内存。

  下面是一个运用DOM进行解析xml文件的例子

xml文件结构如下:

<"1.0" encoding="ISO-8859-1">Giada De Laurentiis200530.00J K. Rowling200529.99James McGovern200349.99Erik T. Ray200339.95

创建解析xml的类如下:

package ;import ;import mentBuilder;import mentBuilderFactory;import ment;import ent;import ;import List;public class ReadXmlFile { public static void main(String[] args) { try{ File xmlFile = new File("src/resource/"); DocumentBuilderFactory builderFactory = nstance(); DocumentBuilder builder = ocumentBuilder(); Document doc = e(xmlFile); ocumentElement()alize(); tln("Root element: "+ocumentElement()odeName()); NodeList nList = lementsByTagName("book"); for(int i = 0 ; i<ength();i++){ Node node = (i); tln("Node name: "+ odeName()); Element ele = (Element)node; tln("----------------------------"); if(odeType() == ENT_NODE){ tln("book category: "+ ttribute("category")); tln("title name: "+ lementsByTagName("title")(0)extContent()); tln("author name: "+lementsByTagName("author")(0)extContent()); tln("year :"+lementsByTagName("year")(0)extContent()); tln("price : "+lementsByTagName("price")(0)extContent()); tln("-------------------------"); } }

  解析结果:

Root element: bookstoreNode name: book----------------------------book category: cookingtitle name: Everyday Italianauthor name: Giada De Laurentiisyear :2005price : 30.00-------------------------Node name: book----------------------------book category: childrentitle name: Harry Potterauthor name: J K. Rowlingyear :2005price : 29.99-------------------------Node name: book----------------------------book category: webtitle name: XQuery Kick Startauthor name: James McGovernyear :2003price : 49.99-------------------------Node name: book----------------------------book category: webtitle name: Learning XMLauthor name: Erik T. Rayyear :2003price : 39.95-------------------------

以上是通过name获得对应的值,

下面利用循环节点的方式输出:

  循环节点输出方式的代码如下:

package ;import ;import mentBuilder;import mentBuilderFactory;import ment;import dNodeMap;import ;import List;public class ReadXmlFile2 { public static void main(String[] args) { try{ File xmlFile = new File("src/resource/"); DocumentBuilderFactory builderFactory = nstance(); DocumentBuilder builder = ocumentBuilder(); Document doc = e(xmlFile); ocumentElement()alize(); tln("Root element: "+ocumentElement()odeName()); if(hildNodes()){ printNode(hildNodes()); } }catch(Exception e){ tStackTrace(); } } public static void printNode(NodeList nodeList){ tln("------------------------"); // tln(ength()); for(int i = 0; i<ength(); i++){ Node node = (Node)(i); if(odeType() == ENT_NODE){ tln("node name: "+odeName()); tln("node value: "+extContent()); if(ttributes()){ NamedNodeMap nodeMap = ttributes(); for(int j = 0; j < ength() ; j++){ Node nodenew = (j); tln("node name "+odeName()); tln("node value "+odeValue()); } } if(hildNodes()){ printNode(hildNodes()); } } } }}

  输出结果如下:

Root element: bookstore------------------------node name: bookstorenode value: Everyday Italian Giada De Laurentiis 2005 30.00 Harry Potter J K. Rowling 2005 29.99 XQuery Kick Start James McGovern 2003 49.99 Learning XML Erik T. Ray 2003 39.95 ------------------------node name: booknode value: Everyday Italian Giada De Laurentiis 2005 30.00 node name categorynode value cooking------------------------node name: titlenode value: Everyday Italiannode name langnode value en------------------------node name: authornode value: Giada De Laurentiis------------------------node name: yearnode value: 2005------------------------node name: pricenode value: 30.00------------------------node name: booknode value: Harry Potter J K. Rowling 2005 29.99 node name categorynode value children------------------------node name: titlenode value: Harry Potternode name langnode value en------------------------node name: authornode value: J K. Rowling------------------------node name: yearnode value: 2005------------------------node name: pricenode value: 29.99------------------------node name: booknode value: XQuery Kick Start James McGovern 2003 49.99 node name categorynode value web------------------------node name: titlenode value: XQuery Kick Startnode name langnode value en------------------------node name: authornode value: James McGovern------------------------node name: yearnode value: 2003------------------------node name: pricenode value: 49.99------------------------node name: booknode value: Learning XML Erik T. Ray 2003 39.95 node name categorynode value webnode name covernode value paperback------------------------node name: titlenode value: Learning XMLnode name langnode value en------------------------node name: authornode value: Erik T. Ray------------------------node name: yearnode value: 2003------------------------node name: pricenode value: 39.95------------------------

  关于节点的问题:

Giada De Laurentiis200530.00

对于 book应用:hildNodes() 得到一个NodeList其中NodeList的长度为9

9个节点分别如下:

title节点

lang节点

Everyday节点

author节点

Giada De Laurentiis节点

year节点

2005节点

price节点

30.00节点