天气预报是非常有用的服务,如果能在网站上集成天气预报,能极大地方便用户查询。
寻遍了国内所有的气象站点,没找见提供Web服务的,太小气了,只能去国外找。NOAA(www.weather.gov)提供一个Web服务,但是死活连不上服务器,估计被屏蔽了,其他提供全球天气预报的有www.weather.com和yahoo,
不过weather.com的服务太麻烦,还需要注册,相比之下,yahoo的天气服务既简单又快速,只需一个http请求,然后解析返回的XML即可获得天气预报。
以北京为例,在weather.yahoo.com查找北京的城市代码为CHXX0008,对应的URL为:
http://xml.weather.yahoo.com/forecastrss?u=c&p=CHXX0008
然后,通过SAX解析返回的XML:
URL url = new URL("http://xml.weather.yahoo.com/forecastrss?u=c&p=CHXX0008");
InputStream input = url.openStream();
SAXParserFactory factory = SAXParserFactory.newInstance();
factory.setNamespaceAware(false);
SAXParser parser = factory.newSAXParser();
parser.parse(input, new YahooHandler());
自己定义一个YahooHandler来响应SAX事件:
/**
* For more information, please visit: http://www.crackj2ee.com
* Author: Liao Xuefeng
*/
public class YahooHandler extends DefaultHandler {
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
if("yweather:condition".equals(qName)) {
String s_date = attributes.getValue(3);
try {
Date publish = new SimpleDateFormat("EEE, dd MMM yyyy hh:mm a z",
Locale.US).parse(s_date);
//System.out.println("Publish: " + publish.toString());
}
catch (Exception e) {
e.printStackTrace();
throw new SAXException("Cannot parse date: " + s_date);
}
}
else if("yweather:forecast".equals(qName)) {
String s_date = attributes.getValue(1);
Date date = null;
try {
date = new SimpleDateFormat("dd MMM yyyy", Locale.US).parse(s_date);
}
catch (Exception e) {
e.printStackTrace();
throw new SAXException("Cannot parse date: " + s_date);
}
int low = Integer.parseInt(attributes.getValue(2));
int high = Integer.parseInt(attributes.getValue(3));
String text = attributes.getValue(4);
int code = Integer.parseInt(attributes.getValue(5));
System.out.println("Weather: "+ text + ", low=" + low + ", high=" + high);
}
super.startElement(uri, localName, qName, attributes);
}
}
运行结果:
Weather: Partly Cloudy, low=7, high=16
Weather: Sunny, low=7, high=20
Yahoo会返回当天和第二天的Weather预报。
分享到:
相关推荐
- **后台天气数据获取服务**:定时从Yahoo等第三方平台获取天气预报信息并保存至本地。 - **基于SMS的天气数据服务**:支持其他手机用户通过发送包含特定关键字的短信来获取天气信息。 - **短信记录管理**:记录所有...
- **后台服务**: 定期从Yahoo获取最新的天气预报信息并存储。 - **短信服务**: 用户可通过发送含有特定关键词的短信来获取存储的天气信息。 - **历史记录**: 记录并展示所有回复过的天气查询短信,允许用户查看或...
【配合AJAX天气预报的webService 之asp】是一个基于ASP技术实现的Web服务,用于获取和处理天气预报数据。由于AJAX(Asynchronous JavaScript and XML)在处理跨域请求时存在限制,尤其是在非IE浏览器中,开发者创建...
本项目“基于Eclipse的Android天气查询的简单demo”提供了一个基础的实现,利用了Volley网络库和雅虎的天气API,使得开发者能够快速了解如何在Android设备上展示实时天气信息。 首先,我们来深入了解Volley库。...
标签中的"yahoo 天气"暗示了开发者可能参考了雅虎天气的设计和功能,这可能包括天气预报、实时天气信息、地理位置定位等功能。实现这些功能可能需要用到Android的位置API(如FusedLocationProviderClient)来获取...
App_PrevisaoDoTempo是一款基于Android平台的应用程序,它展示了如何通过HTTP连接来与Yahoo Weather API进行交互,以获取并显示天气预报信息。这个项目对于开发者来说,是一个很好的学习资源,特别是那些想要了解...