0

我正在使用 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 进行一些检查以仅提取当前的数据?

谢谢!

4

1 回答 1

1

这应该可以解决问题。请记住,如果您使用的是框架,它可能具有 XPath 的实用程序函数以使其更简单。

import java.io.IOException;
import org.w3c.dom.*;
import org.xml.sax.SAXException;
import javax.xml.parsers.*;
import javax.xml.xpath.*;

public class XPathWeather {

  public static void main(String[] args) 
   throws ParserConfigurationException, SAXException, 
          IOException, XPathExpressionException {

    DocumentBuilderFactory domFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = domFactory.newDocumentBuilder();
    Document doc = builder.parse("/tmp/weather.xml");

    XPathFactory factory = XPathFactory.newInstance();
    XPath xpath = factory.newXPath();
    XPathExpression expr = xpath.compile("/xml_api_reply/weather/current_conditions/condition/@data");

    String result = (String) expr.evaluate(doc, XPathConstants.STRING);
    System.out.println(result); 
  }

}
于 2012-05-08T16:29:39.510 回答