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

溫馨提示×

java怎么獲取xml節點屬性

小億
137
2023-10-30 09:39:47
欄目: 編程語言

要獲取XML節點的屬性,可以使用Java的DOM解析器來解析XML文檔。DOM解析器提供了一種方便的方式來處理XML文檔,并可以輕松地獲取節點的屬性。

以下是一個簡單的示例,演示如何使用Java的DOM解析器來獲取XML節點的屬性:

import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

public class XMLParser {
    public static void main(String[] args) {
        try {
            // 創建一個DocumentBuilderFactory對象
            DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
            
            // 創建一個DocumentBuilder對象
            DocumentBuilder builder = factory.newDocumentBuilder();
            
            // 使用DocumentBuilder對象解析XML文件,得到一個Document對象
            Document document = builder.parse("example.xml");
            
            // 獲取XML文檔的根元素
            Element root = document.getDocumentElement();
            
            // 獲取所有名為"book"的節點
            NodeList bookList = root.getElementsByTagName("book");
            
            // 遍歷所有的"book"節點
            for (int i = 0; i < bookList.getLength(); i++) {
                Element book = (Element) bookList.item(i);
                
                // 獲取book節點的屬性值
                String id = book.getAttribute("id");
                String title = book.getAttribute("title");
                String author = book.getAttribute("author");
                String price = book.getAttribute("price");
                
                // 打印屬性值
                System.out.println("Book ID: " + id);
                System.out.println("Title: " + title);
                System.out.println("Author: " + author);
                System.out.println("Price: " + price);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

在上述示例中,我們首先創建了一個DocumentBuilderFactory對象,然后使用它創建了一個DocumentBuilder對象。接下來,我們使用DocumentBuilder對象解析了一個名為"example.xml"的XML文件,并得到了一個Document對象。然后,我們通過調用getDocumentElement()方法獲取了XML文檔的根元素。接著,我們使用getElementsByTagName()方法獲取了所有名為"book"的節點,并遍歷了這些節點。在遍歷過程中,我們通過調用getAttribute()方法獲取了每個book節點的屬性值。

請確保將代碼中的"example.xml"替換為實際的XML文件的路徑。

0
淄博市| 华安县| 澄江县| 济源市| 抚州市| 赤峰市| 永善县| 湘潭市| 阿城市| 开阳县| 景德镇市| 略阳县| 古田县| 蒲城县| 郎溪县| 普格县| 格尔木市| 阿拉善右旗| 孙吴县| 绍兴县| 理塘县| 西安市| 高雄市| 乌鲁木齐市| 涡阳县| 瓦房店市| 巴彦县| 策勒县| 塔城市| 新源县| 通城县| 肇源县| 陆良县| 兴化市| 建平县| 南江县| 梅河口市| 揭西县| 肃宁县| 宁津县| 营山县|