共计 1311 个字符,预计需要花费 4 分钟才能阅读完成。
在 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” 元素的属性值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完