gpt4 book ai didi

java - Google 天气 API 条件

转载 作者:行者123 更新时间:2023-12-01 15:23:38 26 4
gpt4 key购买 nike

我正在使用 SAX 从 google 天气 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=Boston+MA

同时,我试图仅获取当天的条件,而不是 future 任何天的条件。

我是否可以在 xml 中放入一些检查,以便仅根据 XML 文件中的内容提取当前的数据?

谢谢!

最佳答案

这应该可以解决问题。请记住,如果您使用的是框架,它可能具有 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);
}

}

关于java - Google 天气 API 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10501825/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com