我有一个没有XML架构的巨大XML文件,我想从中解析并提取一些信息。 我如何用Java解析XML?
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
答案 0 :(得分:0)
这可以通过2种方式完成 使用DOM Parser 使用SAX Parser 使用StAX Parser
代码请参考以下教程
http://www.java-samples.com/showtutorial.php?tutorialid=152
http://www.javacodegeeks.com/2013/05/parsing-xml-using-dom-sax-and-stax-parser-in-java.html