我正在使用 SAX 从谷歌天气 API 中提取信息,但我遇到了“条件”问题。
具体来说,我正在使用此代码:
public void startElement (String uri, String name, String qName, Attributes atts) {
if (qName.compareTo("condition") == 0) {
String cCond = atts.getValue(0);
System.out.println("Current Conditions: " + cCond);
currentConditions.add(cCond);
}
要从这样的东西中提取 XML:
http://www.google.com/ig/api?weather=波士顿+MA
同时,我试图仅获取当天的条件,而不是将来的任何日子。
是否可以根据 XML 文件中的内容对 xml 进行一些检查以仅提取当前的数据?
谢谢!