java web service实现天气预报功能

请问在javawebservice(有XFile支持)中要实现天气预报功能,怎么做?... 请问在java web service(有XFile 支持) 中要实现天气预报功能,怎么做? 展开
 我来答
曹晓山11
2015-07-03 · 知道合伙人互联网行家
曹晓山11
知道合伙人互联网行家
采纳数:3033 获赞数:52066
毕业南阳理工学院计算机科学与技术专业,本科学位。互联网行业从业3年工作经验,读过编程类相关书籍多本。

向TA提问 私信TA
展开全部

前台js界面代码:

//省份
        function LoadProvince() {
            $.ajax({
                type: "POST",
                url: "ashx/weatherHandler.ashx",
                data: "option=province",
                success: function (result) {
                    $(".sel-province option").remove();
                    var arry = result.split('|');
                    var obj = null;
                    for (var i = 0; i < arry.length; i++) {
                        if (arry[i] != null && arry[i] != "") {
                            obj = arry[i].split(',');
                            $(".sel-province").append("<option value='" + obj[1] + "'>" + obj[0] + "</option>");
                        }
                    }
                    $(".sel-province").find("option[text='北京']").attr("selected", "selected");
                },
                error: function (errorMsg) {
                    $(".result-table tr").remove();
                    $(".result-table").append("<tr><td>省份请求出现错误,请您稍后重试。。。</td></tr>");
                }
            });
        }
        //城市
        function LoadCity(provinceid) {   
            $.ajax({
                type: "POST",
                url: "ashx/weatherHandler.ashx",
                data: "provinceid=" + provinceid + "&option=city",
                success: function (result) {
                    $(".sel-city option").remove();
                    var arry = result.split('|');
                    var obj = null;
                    for (var i = 0; i < arry.length; i++) {
                        if (arry[i] != null && arry[i] != "") {
                            obj = arry[i].split(',');
                            $(".sel-city").append("<option value='" + obj[1] + "'>" + obj[0] + "</option>");
                        }
                    }
                },
                error: function (errorMsg) {
                    $(".result-table tr").remove();
                    $(".result-table").append("<tr><td>城市请求出现错误,请您稍后重试。。。</td></tr>");
                }
            });
        }
        //加载天气
        function GetWeather(cityid) {
            $.ajax({
                type: "POST",
                url: "ashx/weatherHandler.ashx",
                data: "cityid=" + cityid + "&option=weather",
                success: function (result) {
                    $(".result-table tr").remove();
                    var arry = result.split('|');
                    var obj = null;
                    for (var i = 0; i < arry.length; i++) {
                        if (arry[i] != null && arry[i] != "") {
                            if (arry[i].indexOf(".gif") > 0) {
                                $(".result-table").append("<tr><td><image src='images/" + arry[i] + "'/></td></tr>");
                            }
                            else {
                                $(".result-table").append("<tr><td>" + arry[i] + "</td></tr>");
                            }
                        }
                    }
                },
                error: function (errorMsg) {
                    $(".result-table tr").remove();
                    $(".result-table").append("<tr><td>天气数据请求出现错误,请您稍后重试。。。</td></tr>");
                }
            });
        }

html代码:

<body>
    <form id="form1" runat="server">
    <div class="head-div">
        <table>
            <tr>
                <td>
                    <select class="sel-province sel">
                    </select>
                </td>
                <td>
                    <select class="sel-city sel">
                    </select>
                </td>
                <td>
                    <input type="button" class="btn-search" value="查询" />
                </td>
            </tr>
        </table>
    </div>
    <div class="result-div">
        <table class="result-table">
        </table>
    </div>
    </form>
</body>

由于js不支持跨域,直接ajax+ashx一般处理程序(在里面调用天气接口)。一般处理程序代码如下:

using System.Web;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Text;
 
namespace WeatherTest.ashx
{
    /// <summary>
    /// weatherHandler 的摘要说明
    /// </summary>
    public class weatherHandler : IHttpHandler
    {
        WeatherWsClient.WeatherWSSoapClient client = new WeatherWsClient.WeatherWSSoapClient();
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string[] result = null;
            string option = context.Request.Form["option"];
            switch (option)
            {
                case "province":
                    result = GetProvinces();
                    break;
                case "city":
                    result = GetCitys(context.Request.Form["provinceid"]);
                    break;
                case "weather":
                    result = GetWeather(context.Request.Form["cityid"], null);
                    break;
            }
            string str = ConvertToString(result, option);
 
            context.Response.Write(str);
        }
        /// <summary>
        /// 数组转字符串
        /// </summary>
        /// <param name="result"></param>
        /// <param name="option"></param>
        /// <returns></returns>
        private string ConvertToString(string[] result, string option)
        {
            StringBuilder sb = new StringBuilder();
            foreach (string item in result)
            {
                sb.Append(item+"|");
            }
            return sb.ToString();
        }
 
        /// <summary>
        /// 省份
        /// </summary>
        /// <returns></returns>
        private string[] GetProvinces()
        {
            return client.getRegionProvince();
        }
        /// <summary>
        /// 城市
        /// </summary>
        /// <param name="provinceid"></param>
        /// <returns></returns>
        private string[] GetCitys(string provinceid)
        {
            return client.getSupportCityString(provinceid);
        }
        /// <summary>
        /// 天气数据
        /// </summary>
        /// <param name="cityid"></param>
        /// <param name="userid"></param>
        /// <returns></returns>
        private string[] GetWeather(string cityid, string userid)
        {
            return client.getWeather(cityid, userid);
        }
 
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}
匿名用户
2013-08-22
展开全部
引用一个天气预报页就完事了不用自己写 我给你个网站你就知道了 http://www.265.com/weather/db.htm#54337天气预报的免费代码在页面最下面
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式