激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服務器之家 - 編程語言 - JAVA教程 - Javaweb中使用Jdom解析xml的方法

Javaweb中使用Jdom解析xml的方法

2020-06-18 11:35升少 JAVA教程

Jdom是一個開源項目,基于樹形結構,利用純java的技術對XML文檔實現解析,生成,序列化以及多種操作.這篇文章主要介紹了Javaweb中使用Jdom解析xml的方法的相關資料,需要的朋友可以參考下

一、前言

Jdom是什么?

Jdom是一個開源項目,基于樹形結構,利用純java的技術對XML文檔實現解析,生成,序列化以及多種操作。它是直接為java編程服務,利用java語言的特性(方法重載,集合),把SAX和DOM的功能結合起來,盡可能的把原來解析xml變得簡單,我們使用Jdom解析xml會是一件輕松的事情。

Jdom的優點:

1、Jdom專用于java技術,比Dom應用占用更少內存。

2、Jdom提供更加簡單和邏輯性訪問xml信息的基礎方法

3、除xml文件外,Jdom還可以訪問其他的數據源,例如可以創建類從SQL查詢結果中訪問數據

Jdom的構成:

Jdom由6個包構成

Element類表示XML文檔的元素

org.jdom:      解析xml文件所要用到的基礎類

org.jdom.adapters: 包含DOM適配的Java類

org.jdom.filter:    包含xml文檔的過濾類

org.jdom.input:   包含讀取XML文檔的Java類

org.jdom.output: 包含輸出XML文檔的類

org.jdom.trans form: 包含將Jdom xml文檔接口轉換為其他XML文檔接口的Java類

xml是什么?

xml是一種廣為使用的可擴展標記語言,java中解析xml的方式有很多,最常用的像jdom、dom4j、sax等等。

Jdom包下載:http://www.jdom.org/downloads/index.html

這里筆者代碼做的是使用java創建一個xml和讀取一個xml,僅作為筆記介紹。

二、操作

下載jdom包,解壓文件jdom-2.0.6.jar,jdom-2.0.6-javadoc.jar,將包導入到lib文件夾下。(注,如果有錯誤的話,將Jdom中的包全部導入)

Javaweb中使用Jdom解析xml的方法

例子1:使用jdom創建一個xml文件,名字為people.xml

新建類CareateJdom

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.book.jdom;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.output.Format;
import org.jdom2.output.XMLOutputter;
//生成xml文件
public class CreateJdom {
public static void main(String[] args) {
//定義元素
Element people,student;
people = new Element("people");
student = new Element("student");
//設置屬性
student.setAttribute("name", "張三");
student.setAttribute("salary","8000");
//設置文本
student.setText("呵呵");
//將其添加到根目錄下
people.addContent(student);
//新建一個文檔。
Document doc = new Document(people);
//讀取格式,賦值給當前的Format
Format format = Format.getCompactFormat();
//對當前格式進行初始化
format.setEncoding("UTF-8");
//設置xml文件縮進4個空格
format.setIndent(" ");
//建一個xml輸出工廠,將格式給工廠
XMLOutputter xmlout = new XMLOutputter(format);
try {
//將其寫好的文本給工廠,并且建一個文件輸出流,將數據輸出
xmlout.output(doc, new FileOutputStream("people.xml"));
System.out.println("成功!");
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
/*運行結果:
<?xml version="1.0" encoding="UTF-8"?>
<people>
<student name="張三" salary="8000" />
</people>
* */

例子2:使用Jdom解析people.xml文件

新建Readxml類

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.book.jdom;
import java.io.IOException;
import java.util.List;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.JDOMException;
import org.jdom2.input.SAXBuilder;
//讀取people.xml文檔
public class Readxml {
public static void main(String[] args) {
//新建構造器解析xml
SAXBuilder sax = new SAXBuilder();
//建一個文檔去接受數據
Document doc;
try {
//獲取people.xml文檔
doc = sax.build("people.xml");
//獲得根節點
Element people = doc.getRootElement();
//獲得根節點下的節點數據
List<Element> list = people.getChildren();
for(int i = 0;i<list.size();i++){
Element e = list.get(i);
//獲得屬性值
System.out.println("name:"+e.getAttributeValue("name")+" salary:"+e.getAttributeValue("salary"));
//獲得文本值
System.out.println(e.getText());
}
} catch (JDOMException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
/*
* 運行結果:
* name:張三 salary:8000
呵呵
* */

解析xml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
用jdom獲取多個相同標簽名的不同屬性值的方法
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
    <Key Name="China">
      <Value Name="TextKey">China</Value>
      <Value Name="Enabled">true</Value>
      <Value Name="PhotoIDWidth">38PhotoIDWidth</Value>
      <Value Name="PhotoIDHeight">38</Value>
      <Key Name="Adult">
        <Value Name="CrownPercent">0.10</Value>
        <Value Name="HeadPercent">0.60AdultHeadPercent</Value>
      </Key>
      <Key Name="Child">
        <Value Name="CrownPercent">0.10</Value>
        <Value Name="HeadPercent">0.60ChildHeadPercent</Value>
      </Key>
    </Key>
    <Key Name="Australia">
      <Value Name="TextKey">Australia</Value>
      <Value Name="Enabled">true</Value>
      <Value Name="PhotoIDWidth">35PhotoIDWidth</Value>
      <Value Name="PhotoIDHeight">45</Value>
      <Key Name="Adult">
        <Value Name="CrownPercent">0.061</Value>
        <Value Name="HeadPercent">0.756"Adult"HeadPercent</Value>
      </Key>
      <Key Name="Child">
        <Value Name="CrownPercent">0.072</Value>
        <Value Name="HeadPercent">0.711ChildHeadPercent</Value>
      </Key>
    </Key>
    <Key Name="Austria">
      <Value Name="TextKey">Austria</Value>
      <Value Name="Enabled">true</Value>
      <Value Name="PhotoIDWidth">35PhotoIDWidth</Value>
      <Value Name="PhotoIDHeight">45</Value>
      <Key Name="Adult">
        <Value Name="CrownPercent">0.064</Value>
        <Value Name="HeadPercent">0.744AdultHeadPercent</Value>
      </Key>
      <Key Name="Child">
        <Value Name="CrownPercent">0.078</Value>
        <Value Name="HeadPercent">0.689ChildHeadPercent</Value>
      </Key>
    </Key>
</Configuration>
package input;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;
public class ReadXML {
  /**
   * @param args
   */
  public static void main(String[] args) throws JDOMException, IOException {
    SAXBuilder sb = new SAXBuilder();
    //構造文檔對象
    Document doc = sb.build(Test.class.getClassLoader().getResourceAsStream("nation.xml"));
    //獲取根元素
    Element root = doc.getRootElement();
    //定位到<Configuration> -> <Key>
    List<Element> list = root.getChildren("Key");
    List<Element> children = new ArrayList<Element>();
    List<Element> childrens = new ArrayList<Element>();
    for (int i = 0; i < list.size(); i++) {
      Element element = (Element) list.get(i);
      System.out.print(element.getAttributeValue("Name"));
      //定位到<Configuration> -> <Key> -> <Value>
      children = element.getChildren("Value");
      for(int j=0; j<children.size(); j++){
        Element elementChildren = (Element) children.get(j);
        //定位到<Configuration> -> <Key> -> <Value Name="PhotoIDWidth">
        if(elementChildren.getAttributeValue("Name").equals("PhotoIDWidth")){
          //獲取<Configuration> -> <Key> -> <Value Name="PhotoIDWidth"> 屬性值
          System.out.print("<--------->"+elementChildren.getAttributeValue("Name"));
          //獲取<Configuration> -> <Key> -> <Value Name="PhotoIDWidth"> 標簽里內容
          System.out.print(","+elementChildren.getText());
        }
      }
      children.clear();
      //定位到<Configuration> -> <Key> -> <Key>
      children = element.getChildren("Key");
      for(int j=0; j<children.size(); j++){
        Element elementChildren = (Element)children.get(j);
        //定位到<Configuration> -> <Key> -> <Key Name="Child">
        if(elementChildren.getAttributeValue("Name").equals("Child")){
          //定位到<Configuration> -> <Key> -> <Key Name="Child"> -> <Value>
          childrens = elementChildren.getChildren("Value");
          for(int k=0; k<childrens.size(); k++){
            Element elementChildrens = (Element)childrens.get(k);
            //定位到<Configuration> -> <Key> -> <Key Name="Child"> -> <Value Name="HeadPercent">
            if(elementChildrens.getAttributeValue("Name").equals("HeadPercent")){
              System.out.println("<--------->"+elementChildrens.getText());
            }
          }
        }
      }
    }
  }
}
打印結果:
China<--------->PhotoIDWidth,38PhotoIDWidth<--------->0.60ChildHeadPercent
Australia<--------->PhotoIDWidth,35PhotoIDWidth<--------->0.711ChildHeadPercent
Austria<--------->PhotoIDWidth,35PhotoIDWidth<--------->0.689ChildHeadPercent

以上所述是小編給大家介紹的Javaweb中使用Jdom解析xml的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對服務器之家網站的支持!

原文鏈接:http://www.cnblogs.com/IT-1994/archive/2016/09/28/5904779.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 久久亚洲成人网 | 天天鲁在线视频免费观看 | 一级电影免费在线观看 | 日韩毛片在线看 | 九九热在线精品视频 | 久久精品亚洲一区二区三区观看模式 | 欧美亚洲一区二区三区四区 | 日韩99 | 91短视频在线观看视频 | 全黄性性激高免费视频 | 国产一级毛片高清视频 | 中文字幕亚洲情99在线 | 午夜激情视频网站 | 亚洲精品3 | 国产精品1区 | 欧美一级黄色网 | 国产精品啪一品二区三区粉嫩 | 欧美顶级毛片在线播放小说 | 在线视频 欧美日韩 | 澳门一级淫片免费视频 | 成码无人av片在线观看网站 | 亚洲片在线观看 | 国产精品视频导航 | 国产黄色录像片 | 99爱视频| 国产精品99久久久久久久女警 | 免费看污视频在线观看 | 久久免费视频8 | 久久精品成人免费国产片桃视频 | 欧美在线成人影院 | 日本精品久久久一区二区三区 | 国产精品视频在 | 久久金品 | 日本va在线观看 | 久久久久免费精品国产小说色大师 | 国产麻豆久久 | a免费毛片| 成人综合区一区 | 国产精品99久久久久久久 | 久久影院国产精品 | 成人做爰高潮片免费视频韩国 |