JSP从WebService取天气预报数据,很精简的代码[效果图]。

JSP从WebService取天气预报数据。

网上也有相关的代码,不过比较繁琐,我改进了一下。很简单地实现了。

package com.xxx.web;

import java.io.*;
import java.net.*;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Weather {
 private static String _url = "http://www.wopos.com/webservice/Weather.asmx/getWeather?mCity=";

 private Weather() {
 }

 /**
  * @param cityName
  * @return
  */
 private static InputStream getSoapInputStream(String cityName) {
  try {
   /*
    * URL url = new URL(_url + cityName); HttpURLConnection hc =
    * (HttpURLConnection) url.openConnection(); hc.connect();
    * InputStream urlStream = hc.getInputStream(); return urlStream;
    */
   return new URL(_url + cityName).openStream();
  } catch (Exception ex) {
   return null;
  }

 }
 
 /**
  * 用W3C DOM对返回的XML进行解释
  * @param cityName
  * @return
  */
 public static String getWeatherByCityName(String cityName) {
  try {
   Document doc;
   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
   dbf.setNamespaceAware(true);
   DocumentBuilder db = dbf.newDocumentBuilder();
   InputStream is = getSoapInputStream(cityName);
   if (is == null){
    return null;
   }
   doc = db.parse(is);
   NodeList nl = doc.getElementsByTagName("string");
   Node n = nl.item(0);
   String weather = n.getFirstChild().getNodeValue();
   is.close();
   return weather;
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  }
 }

 /**
  * @param args
  */
 public static void main(String[] args) {
  System.out.print(getWeatherByCityName("北京"));
 }
}

得到一个String对象,剩下的就很好处理了。

最终实现效果:
最终实现效果

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
C# WebService 实现天气预报的一般步骤如下: 1. 获天气数据源:可以从第三方天气API天气数据。 2. 创建 WebService 项目:在 Visual Studio 中创建一个 WebService 项目。 3. 定义 WebService:在 WebService 项目中定义一个 WebService,提供获天气信息的方法。 4. 调用 API:在 WebService 的方法中调用天气 API实时天气信息。 5. 返回结果:将获到的天气信息返回给客户端。 以下是一个简单的 C# WebService 实现天气预报的例子: ```csharp using System; using System.Web.Services; using System.Xml; namespace WeatherWebService { [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class WeatherService : System.Web.Services.WebService { [WebMethod] public string GetWeather(string city) { string url = "http://wthrcdn.etouch.cn/weather_mini?city=" + city; XmlDocument xml = new XmlDocument(); xml.Load(url); XmlNodeList xnList = xml.SelectNodes("/resp/forecast"); string result = ""; foreach (XmlNode xn in xnList) { result += xn.SelectSingleNode("date").InnerText + "\n"; result += xn.SelectSingleNode("high").InnerText + "\n"; result += xn.SelectSingleNode("low").InnerText + "\n"; result += xn.SelectSingleNode("type").InnerText + "\n"; result += "\n"; } return result; } } } ``` 在上面的例子中,我们定义了一个名为“GetWeather”的 WebService 方法,该方法接受一个城市名称作为参数,并返回该城市未来几天的天气预报信息。我们使用 XmlDocument 类从天气 API XML 数据,然后解析 XML 并返回结果给客户端。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值