91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么解析xml獲取標簽屬性值

小億
150
2023-09-29 01:36:45
欄目: 編程語言

在Java中,可以使用DOM(Document Object Model)解析XML并獲取標簽的屬性值。以下是一個簡單的示例代碼:

import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import org.w3c.dom.Element;
public class XMLParser {
public static void main(String[] args) {
try {
// 創建一個DocumentBuilderFactory對象
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
// 創建一個DocumentBuilder對象
DocumentBuilder builder = factory.newDocumentBuilder();
// 使用DocumentBuilder對象的parse()方法解析XML文件,返回一個Document對象
Document document = builder.parse("example.xml");
// 獲取XML文件的根元素
Element rootElement = document.getDocumentElement();
// 獲取所有名為"book"的子元素
NodeList bookNodes = rootElement.getElementsByTagName("book");
// 遍歷所有"book"元素
for (int i = 0; i < bookNodes.getLength(); i++) {
// 獲取當前的"book"元素
Element bookElement = (Element) bookNodes.item(i);
// 獲取"book"元素的屬性值
String id = bookElement.getAttribute("id");
String title = bookElement.getAttribute("title");
String author = bookElement.getAttribute("author");
// 打印屬性值
System.out.println("Book " + (i+1) + " - id: " + id);
System.out.println("Book " + (i+1) + " - title: " + title);
System.out.println("Book " + (i+1) + " - author: " + author);
}
} catch (Exception e) {
e.printStackTrace();
}
}
}

上述代碼假設存在一個名為"example.xml"的XML文件,其中包含多個名為"book"的元素,每個元素都有"id"、"title"和"author"屬性。代碼通過DOM解析XML文件,并獲取每個"book"元素的屬性值。

0
吉木乃县| 宁海县| 上栗县| 宜昌市| 和龙市| 南和县| 灵山县| 华亭县| 郎溪县| 甘泉县| 台安县| 泌阳县| 眉山市| 景泰县| 广宗县| 岳西县| 莲花县| 定安县| 石嘴山市| 鸡东县| 蚌埠市| 宝山区| 同江市| 磐安县| 长治县| 合阳县| 福泉市| 潜山县| 达日县| 湛江市| 颍上县| 尖扎县| 光泽县| 南部县| 芜湖县| 喜德县| 南投市| 漳州市| 桃源县| 天水市| 巍山|