欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Javaweb中使用Jdom解析xml的方法

 更新時間:2016年09月29日 09:02:58   作者:升少  
Jdom是一個開源項目,基于樹形結(jié)構(gòu),利用純java的技術(shù)對XML文檔實現(xiàn)解析,生成,序列化以及多種操作.這篇文章主要介紹了Javaweb中使用Jdom解析xml的方法的相關(guān)資料,需要的朋友可以參考下

一、前言

Jdom是什么?

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

Jdom的優(yōu)點:

1、Jdom專用于java技術(shù),比Dom應(yīng)用占用更少內(nèi)存。

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

3、除xml文件外,Jdom還可以訪問其他的數(shù)據(jù)源,例如可以創(chuàng)建類從SQL查詢結(jié)果中訪問數(shù)據(jù)

Jdom的構(gòu)成:

Jdom由6個包構(gòu)成

Element類表示XML文檔的元素

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

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

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

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

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

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

xml是什么?

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

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

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

二、操作

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

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

新建類CareateJdom

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");
//設(shè)置屬性
student.setAttribute("name", "張三");
student.setAttribute("salary","8000");
//設(shè)置文本
student.setText("呵呵");
//將其添加到根目錄下
people.addContent(student);
//新建一個文檔。
Document doc = new Document(people);
//讀取格式,賦值給當(dāng)前的Format
Format format = Format.getCompactFormat();
//對當(dāng)前格式進行初始化
format.setEncoding("UTF-8");
//設(shè)置xml文件縮進4個空格
format.setIndent(" ");
//建一個xml輸出工廠,將格式給工廠
XMLOutputter xmlout = new XMLOutputter(format);
try {
//將其寫好的文本給工廠,并且建一個文件輸出流,將數(shù)據(jù)輸出
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();
}
}
}
/*運行結(jié)果:
<?xml version="1.0" encoding="UTF-8"?>
<people>
<student name="張三" salary="8000" />
</people>
* */

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

新建Readxml類

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) {
//新建構(gòu)造器解析xml
SAXBuilder sax = new SAXBuilder();
//建一個文檔去接受數(shù)據(jù)
Document doc;
try {
//獲取people.xml文檔
doc = sax.build("people.xml");
//獲得根節(jié)點
Element people = doc.getRootElement();
//獲得根節(jié)點下的節(jié)點數(shù)據(jù)
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();
}
}
}
/*
* 運行結(jié)果:
* name:張三 salary:8000
呵呵
* */

解析xml

用jdom獲取多個相同標(biāo)簽名的不同屬性值的方法
<?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();
    //構(gòu)造文檔對象
    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"> 標(biāo)簽里內(nèi)容
          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());
            }
          }
        }
      }
    }
  }
}
打印結(jié)果:
China<--------->PhotoIDWidth,38PhotoIDWidth<--------->0.60ChildHeadPercent
Australia<--------->PhotoIDWidth,35PhotoIDWidth<--------->0.711ChildHeadPercent
Austria<--------->PhotoIDWidth,35PhotoIDWidth<--------->0.689ChildHeadPercent

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

相關(guān)文章

  • Java數(shù)組的特性_動力節(jié)點Java學(xué)院整理

    Java數(shù)組的特性_動力節(jié)點Java學(xué)院整理

    數(shù)組是基本上所有語言都會有的一種數(shù)據(jù)類型,它表示一組相同類型的數(shù)據(jù)的集合,具有固定的長度,并且在內(nèi)存中占據(jù)連續(xù)的空間。在C,C++等語言中,數(shù)組的定義簡潔清晰,而在Java中確有一些會讓人迷惑的特性。本文就嘗試分析這些特性
    2017-04-04
  • Spring關(guān)于@Configuration配置處理流程

    Spring關(guān)于@Configuration配置處理流程

    這篇文章主要介紹了Spring關(guān)于@Configuration配置處理流程,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-06-06
  • Java在ElasticSearch中使用LocalDatetime類型

    Java在ElasticSearch中使用LocalDatetime類型

    最近在開發(fā)一個搜索功能的需求的時候,遇到了LocalDatetime類型不能保存到ElasticSearch中的問題,這篇文章主要介紹了Java在ElasticSearch中使用LocalDatetime類型
    2023-10-10
  • JAVA常用API總結(jié)與說明

    JAVA常用API總結(jié)與說明

    這篇文章主要介紹了JAVA常用API總結(jié)與說明,包括JAVA線程常用API,JAVA隊列常用API,JAVA泛型集合算法常用API,JAVA并發(fā)常用API需要的朋友可以參考下
    2022-12-12
  • MyBatis執(zhí)行SQL的兩種方式小結(jié)

    MyBatis執(zhí)行SQL的兩種方式小結(jié)

    本文主要介紹了MyBatis執(zhí)行SQL的兩種方式小結(jié),主要包括SqlSession 發(fā)送SQL和SqlSession獲取Mapper接口,通過Mapper接口發(fā)送SQL,具有一定的參考價值,感興趣的可以了解一下
    2023-10-10
  • Java使用Redis及其優(yōu)化詳解

    Java使用Redis及其優(yōu)化詳解

    大家好,本篇文章主要分享的是Java使用Redis及其優(yōu)化詳解,感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽
    2021-12-12
  • Java多線程 ThreadLocal原理解析

    Java多線程 ThreadLocal原理解析

    這篇文章主要介紹了Java多線程 ThreadLocal原理,ThreadLoal 變量,線程局部變量,同一個 ThreadLocal 所包含的對象,在不同的 Thread 中有不同的副本,下面文章也是圍繞Java多線程 ThreadLocal展開內(nèi)容,需要的朋友可以參考一下
    2021-10-10
  • junit4教程junit4.5官方下載

    junit4教程junit4.5官方下載

    前提:本文假設(shè)讀者已經(jīng)具有使用JUnit 4以前版本的經(jīng)驗。
    2008-09-09
  • 基于mybatis查詢結(jié)果映射不到對象的處理

    基于mybatis查詢結(jié)果映射不到對象的處理

    這篇文章主要介紹了mybatis查詢結(jié)果映射不到對象的處理方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2021-08-08
  • Java重點之基于比較的七大排序

    Java重點之基于比較的七大排序

    最近幾天在研究排序算法,看了很多博客,發(fā)現(xiàn)網(wǎng)上有的文章中對排序算法解釋的并不是很透徹,而且有很多代碼都是錯誤的,所以我根據(jù)這幾天看的文章,整理了一個較為完整的排序算法總結(jié),本文中的所有算法均有JAVA實現(xiàn),經(jīng)本人調(diào)試無誤后才發(fā)出,如有錯誤,請各位前輩指出
    2021-10-10

最新評論