我是 Andriod 编程的新手,可以提供有关如何解析 xml 文件并将数据放入微调器的任何帮助,请提供帮助。
XML 文件链接如下: http: //www.ecb.int/stats/eurofxref/eurofxref-daily.xml
谢谢
我是 Andriod 编程的新手,可以提供有关如何解析 xml 文件并将数据放入微调器的任何帮助,请提供帮助。
XML 文件链接如下: http: //www.ecb.int/stats/eurofxref/eurofxref-daily.xml
谢谢
由于您的 xml 文件较大,因此使用 sax 解析器更好。对于从 sax 解析器使用,您应该使用 DeafaultHandler 类并覆盖其方法,并且在其 startElement 方法中,您应该为获取值编写以下相同的内容:
public void startElement(String arg0, String localName, String arg2,
Attributes attributes) throws SAXException {
currentElement = true;
if (localName.equals("marker")) {
String currency = attributes.getValue("currency ");
String rat= attributes.getValue("rat");
//and ...
}
}
}