我是android编程新手可以帮助解决xml文件并将数据放入微调器中请帮忙。
XML文件链接如下:http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml
由于
答案 0 :(得分:0)
因为你的xml文件很大,所以使用sax解析器更好。对于使用sax解析器你应该使用DeafaultHandler类并覆盖它的方法,并且在startElement方法中你应该为get值写下同样的东西:
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 ...
}
}
}