当前位置:首页 » 网页前端 » web天气预报参考文献
扩展阅读
webinf下怎么引入js 2023-08-31 21:54:13
堡垒机怎么打开web 2023-08-31 21:54:11

web天气预报参考文献

发布时间: 2023-03-21 04:07:11

A. c# winform 如何显示天气预报

不要听网上这些人的风言风语,我们都是用WebBrowser来完成这个操作的,直接把url赋值给WebBrowser就了事,何必一大堆一大堆的代码,天气预报终究是运营商提供的,哪天他停止了服务,你又要去修改代码,不觉得可笑吗?

我的方法是:建立一个本地ACCESS数据库,设置好他的密码,在里面做一个表,存储各个城市url和各个城市名,url是在网站上获取的,比如:http://tianqi.xixik.com,提供你所需要的城市天气预报代码:http://cache.xixik.com.cn/1/hefei/是合肥的http://cache.xixik.com.cn/1/beijing/是北京的...

你要做的事情很简单,只需要读取数据库,给WebBrowser分配url就好了,数据库放在程序相对路径里面,可以增删查,防止这个网站没用了还可以维护,打包程序的时候把数据库格式改成.bat或者.cab,连接字符串里,也要改掉,这样数据库就只占几个KB空间。

B. 如何使用webserver实现在线天气预报查询

步骤 :
1 、新建web 项目,添加窗体。
2 、 引用右键--> 添加服务引用-->高级--> 添加Web引用。

3 、 将Web接口复制到URL右边的框里-->点击输入框右边的箭头,测试连接(观察左下角看是否连接成功)--> 最右边可以更改Web引用名-->添加引用。

C. 如何获取天气预报的wsdl

1、天气预报web services地址
http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx?wsdl
用浏览器打开此地址,保存页面为Weather.xml
2、新建一个java工程 webservices
建立包名 com.test.ws
将Weather.xml拷贝到src目录下
3、编写批处理WSDL-SQUARED.CMD,使用wsdj2java生成客户端调用代码

setAXIS_HOME=D:axis-1_4
setCLASSPATH=.;%AXIS_HOME%libaxis.jar;%AXIS_HOME%libaxis-ant.jar;%AXIS_HOME%libcommons-discovery-0.2.jar;%AXIS_HOME%libcommons-logging-1.0.4.jar;%AXIS_HOME%libjaxrpc.jar;%AXIS_HOME%liblog4j-1.2.8.jar;%AXIS_HOME%libsaaj.jar;%AXIS_HOME%libwsdl4j-1.5.1.jar
javaorg.apache.axis.wsdl.WSDL2Java-pcom.test.wsWeather.xml

D. java web service实现天气预报功能

前台js界面代码:

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

html代码:

<body>
<formid="form1"runat="server">
<divclass="head-div">
<table>
<tr>
<td>
<selectclass="sel-provincesel">
</select>
</td>
<td>
<selectclass="sel-citysel">
</select>
</td>
<td>
<inputtype="button"class="btn-search"value="查询"/>
</td>
</tr>
</table>
</div>
<divclass="result-div">
<tableclass="result-table">
</table>
</div>
</form>
</body>

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

usingSystem.Web;
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Web;
usingSystem.Text;

namespaceWeatherTest.ashx
{
///<summary>
///weatherHandler的摘要说明
///</summary>
publicclassweatherHandler:IHttpHandler
{
WeatherWsClient.WeatherWSSoapClientclient=newWeatherWsClient.WeatherWSSoapClient();
publicvoidProcessRequest(HttpContextcontext)
{
context.Response.ContentType="text/plain";
string[]result=null;
stringoption=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;
}
stringstr=ConvertToString(result,option);

context.Response.Write(str);
}
///<summary>
///数组转字符串
///</summary>
///<paramname="result"></param>
///<paramname="option"></param>
///<returns></returns>
privatestringConvertToString(string[]result,stringoption)
{
StringBuildersb=newStringBuilder();
foreach(stringiteminresult)
{
sb.Append(item+"|");
}
returnsb.ToString();
}

///<summary>
///省份
///</summary>
///<returns></returns>
privatestring[]GetProvinces()
{
returnclient.getRegionProvince();
}
///<summary>
///城市
///</summary>
///<paramname="provinceid"></param>
///<returns></returns>
privatestring[]GetCitys(stringprovinceid)
{
returnclient.getSupportCityString(provinceid);
}
///<summary>
///天气数据
///</summary>
///<paramname="cityid"></param>
///<paramname="userid"></param>
///<returns></returns>
privatestring[]GetWeather(stringcityid,stringuserid)
{
returnclient.getWeather(cityid,userid);
}

publicboolIsReusable
{
get
{
returnfalse;
}
}
}
}