中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
吉木乃县| 珠海市| 从化市| 兖州市| 伊宁市| 博客| 永善县| 汕头市| 衡水市| 甘肃省| 荥经县| 焦作市| 中宁县| 乐清市| 纳雍县| 历史| 磐安县| 壤塘县| 溧水县| 团风县| 周至县| 峨边| 定西市| 张家川| 涡阳县| 永兴县| 中山市| 新津县| 英德市| 青阳县| 石柱| 龙里县| 苍溪县| 常熟市| 岱山县| 阿图什市| 凌云县| 高唐县| 白沙| 修水县| 阳高县|