JSP用webservice

本文介绍了一种简单的方法,使用JSP从WebService获取指定城市的天气预报数据。通过调用特定URL并解析返回的XML数据,可以轻松实现天气信息的获取。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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对象,剩下的就很好处理了。
最终实现效果:
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值