java基礎之XML
阿新 • • 發佈:2018-12-11
目錄
java基礎之XML
XML是一種通用的資料交換格式,它的平臺無關性、語言無關性、系統無關性、給資料整合與互動帶來了極大的方便。本篇文章重點介紹DOM4J對XML檔案的一些操作。
1. XML解析概述
常見解析方式和解析器
- DOM:要求解析器把整個XML文件裝載到記憶體,並解析成一個Document物件。
優點:元素與元素之間保留結構關係,故可以進行增刪改查操作。
缺點:XML文件過大,可能出現記憶體溢位顯現。
- SAX:是一種速度更快,更有效的方法。它逐行掃描文件,一邊掃描一邊解析。並以事件驅動的方式進行具體解析,每執行一行,都將觸發對應的事件。
優點:處理速度快,可以處理大檔案
缺點:只能讀,逐行後將釋放資源。
2. DOM4J介紹
2.1 常用包
包名 | 作用 |
---|---|
import org.dom4j.Document; | Document文件類 |
import org.dom4j.Element | 元素節點類 |
import org.dom4j.QName; | 一個對元素名字的封裝類 |
import org.dom4j.io.SAXReader; | sax讀取類 |
import org.dom4j.io.XMLWriter | xml寫入類 |
import org.dom4j.io.OutputFormat | 輸出格式 |
2.2 內建元素
元素 | 含義 |
---|---|
Attribute | 定義了 XML 的屬性。 |
Branch | 指能夠包含子節點的節點。如XML元素(Element)和文件(Docuemnts)定義了一個公共的行為 |
CDATA | 定義了 XML CDATA 區域 |
CharacterData | 是一個標識介面,標識基於字元的節點。如CDATA,Comment, Text. |
Comment | 定義了 XML 註釋的行為 |
Document | 定義了XML 文件 |
DocumentType | 定義 XML DOCTYPE 宣告 |
Element | 定義XML 元素 |
ElementHandler | 定義了Element 物件的處理器 |
ElementPath | 被 ElementHandler 使用,用於取得當前正在處理的路徑層次資訊 |
Entity | 定義 XML entity |
Node | 為dom4j中所有的XML節點定義了多型行為 |
NodeFilter | 定義了在dom4j 節點中產生的一個濾鏡或謂詞的行為(predicate) |
ProcessingInstruction | 定義 XML 處理指令 |
Text | 定義 XML 文字節點 |
Visitor | 用於實現 Visitor模式 |
XPath | 在分析一個字串後會提供一個 XPath 表示式 |
2.2 Element類
方法 | 含義 |
---|---|
getQName() | 元素的QName物件 |
getNamespace() | 元素所屬的Namespace物件 |
getNamespacePrefix() | 元素所屬的Namespace物件的prefix |
getNamespaceURI() | 元素所屬的Namespace物件的URI |
getName() | 元素的local name |
getQualifiedName() | 元素的qualified name |
getText() | 元素所含有的text內容,如果內容為空則返回一個空字串而不是null |
getTextTrim() | 元素所含有的text內容,其中連續的空格被轉化為單個空格,該方法不會返回null |
attributeIterator() | 元素屬性的iterator,其中每個元素都是 |
2.3 Attribute類
方法 | 含義 |
---|---|
attributeValue() | 元素的某個指定屬性所含的值 |
elementIterator() | 元素的子元素的iterator,其中每個元素都是Element物件 |
element() | 元素的某個指定(qualified name或者local name)的子元素 |
elementText() | 元素的某個指定(qualified name或者local name)的子元素中的text資訊 |
getParent() | 元素的父元素 |
getPath() | 元素的XPath表示式,其中父元素的qualified name和子元素的qualified name之間使用”/”分隔 |
isTextOnly() | 是否該元素只含有text或是空元素 |
isRootElement() | 是否該元素是XML樹的根節點 |
2.4 常用操作
- 讀取xml檔案,獲得document物件.
SAXReader reader = new SAXReader();
Document document = reader.read(new File("***.xml"));
- 解析XML形式的文字,得到document物件.
String text = "<members></members>";
Document document = DocumentHelper.parseText(text);
- 獲取根節點
Element root = dom.getRootElement();
- 取得某節點的單個子節點
Element memberElm=root.element("title");
- 獲取節點文字
String text=memberElm.getText();
- 取得某節點下名為"title"所有位元組點並進行遍歷
List list = rootElm.elements("member");
Iterator<Element> it = list.iterator();
while(it.hasNext()){
Element elm = it.next();
// do something...
}
- 在某節點下新增子節點.
Element ageElm = newMemberElm.addElement("age");
- 設定節點文字.
ageElm.setText("29");
- 刪除某節點.
parentElm.remove(childElm);
- 取得某節點下的某屬性
Element root=document.getRootElement();
Attribute attribute=root.attribute("id");
- 設定某節點的屬性和文字.
newMemberElm.addAttribute("name", "sitinspring");
- 設定屬性的文字
Attribute attribute=root.attribute("name");
attribute.setText("sitinspring");
- 刪除某屬性
Attribute attribute=root.attribute("size");// 屬性名name
root.remove(attribute);
3. 程式碼演示
3.1 DOM4J讀取xml檔案
test.xml
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book id="1">
<title>巴黎聖母院</title>
<author>雨果</author>
</book>
<book id="2">
<title>飄</title>
<author>米切爾</author>
</book>
</bookstore>
1. 使用List列表解析xml
import java.io.File;
import java.util.List;
import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
public class XmlDemo {
public static void main(String[] args) throws Exception {
SAXReader reader = new SAXReader();
File file = new File("test.xml");
Document document = reader.read(file);
Element root = document.getRootElement();
List<Element> childElements = root.elements();
for (Element child : childElements) {
//已知屬性名情況下
System.out.println("--->id: " + child.attributeValue("id"));
System.out.println("title:" + child.elementText("title"));
System.out.println("author:" + child.elementText("author"));
//未知屬性名情況下
/*List<Attribute> attributeList = child.attributes();
for (Attribute attr : attributeList) {
System.out.println(attr.getName() + ": " + attr.getValue());
}
List<Element> elementList = child.elements();
for (Element ele : elementList) {
System.out.println(ele.getName() + ": " + ele.getText());
}
System.out.println();*/
}
}
}
//輸出結果:
--->id: 1
title:巴黎聖母院
author:雨果
--->id: 2
title:飄
author:米切爾
2. 使用Iterator解析xml
public class XmlDemo {
public static void main(String[] args) throws Exception {
SAXReader reader = new SAXReader();
Document document = reader.read(new File("test.xml"));
Element root = document.getRootElement();
Iterator<Element> it = root.elementIterator();
while (it.hasNext()) {
Element element = it.next();
//未知屬性名稱情況下
Iterator<Element> attrIt = element.attributeIterator();
while (attrIt.hasNext()) {
Attribute a = (Attribute) attrIt.next();
System.out.println(a.getValue());
}
Iterator<Element> eleIt = element.elementIterator();
while (eleIt.hasNext()) {
Element e = eleIt.next();
System.out.println(e.getName() + ": " + e.getText());
}
System.out.println();
//已知元素名情況下
/*System.out.println("id: " + element.attributeValue("id"));
System.out.println("title: " + element.elementText("title"));
System.out.println("author: " + element.elementText("author"));
System.out.println();*/
}
}
}
//輸出結果:
id: 1
title:巴黎聖母院
author:雨果
id: 2
title:飄
author:米切爾
3.2 DOM4J建立xml檔案
public class XmlDemo {
public static void main(String[] args) throws Exception {
Document doc = DocumentHelper.createDocument();
//增加根節點
Element books = doc.addElement("bookstore");
//增加子元素
Element book1 = books.addElement("book");
Element title1 = book1.addElement("title");
Element author1 = book1.addElement("author");
Element book2 = books.addElement("book");
Element title2 = book2.addElement("title");
Element author2 = book2.addElement("author");
//為子節點新增屬性
book1.addAttribute("id", "3");
//為元素新增內容
title1.setText("戰爭與和平");
author1.setText("列夫托爾斯泰");
book2.addAttribute("id", "4");
title2.setText("紅樓夢");
author2.setText("曹雪芹");
//例項化輸出格式物件
OutputFormat format = OutputFormat.createPrettyPrint();
//設定輸出編碼
format.setEncoding("UTF-8");
//建立需要寫入的File物件
File file = new File("test2.xml");
//生成XMLWriter物件,建構函式中的引數為需要輸出的檔案流和格式
XMLWriter writer = new XMLWriter(new FileOutputStream(file), format);
//開始寫入,write方法中包含上面建立的Document物件
writer.write(doc);
}
}
執行結果(專案根目錄下):
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book id="3">
<title>戰爭與和平</title>
<author>列夫托爾斯泰</author>
</book>
<book id="4">
<title>紅樓夢</title>
<author>曹雪芹</author>
</book>
</bookstore>
3.2 DOM4J修改xml檔案
public class XmlDeml {
public static void main(String[] args) throws Exception {
SAXReader reader = new SAXReader();
File file = new File("test.xml");
Document document = reader.read(file);
Element root = document.getRootElement();
Element nameElement = root.element("book").element("author");
nameElement.setText("魯迅");
//寫回XML文件
OutputFormat format = OutputFormat.createPrettyPrint();
XMLWriter writer = new XMLWriter(new FileOutputStream("test.xml"), format);
writer.write(document);
writer.close();
}
}
執行結果(專案根目錄下):
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book id="1">
<title>巴黎聖母院</title>
<author>魯迅</author>
</book>
</bookstore>