我知道这个问题有很多答案,但在我的案例中并没有起作用。我会从这个链接ECB读取欧洲中央银行的数据。例如,如何阅读"率"时间=" 2015-02-27"以及如何阅读"率"所有90天的美元?
答案 0 :(得分:0)
最简单的方法之一是使用DOM(文档对象模型)解析器。它会将您的xml文档加载到内存中并将其转换为由节点组成的树,以便您可以遍历它,以便能够获取任何位置的任何节点的信息。它是内存消耗,通常不如SAX解析器。
以下是一个例子:
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;
import java.io.File;
public class DomParsing {
public static final String ECB_DATAS ="C:\\xml\\eurofxref-hist-90d.xml";
public static void main(String argv[]) {
try {
File fXmlFile = new File(ECB_DATAS);
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(fXmlFile);
doc.getDocumentElement().normalize();
System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
NodeList nList = doc.getElementsByTagName("Cube");
for (int temp = 0; temp < nList.getLength(); temp++) {
Node nNode = nList.item(temp);
System.out.println("\nCurrent Element :" + nNode.getNodeName());
if (nNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) nNode;
System.out.println("currency : " + eElement.getAttribute("currency") + " and rate is " + eElement.getAttribute("rate"));
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
应用于您的文件会产生以下结果:
货币:BGN和利率为1.9558
当前元素:多维数据集
货币:捷克克朗,汇率为27.797当前元素:多维数据集
货币:DKK和利率为7.444