java版的webservice,完全用java的正则表达式对websercice的xml进行解析,可以很快用到web中,只需要调用其中的封装好的方法

package com.citycollege.stw.weathertest;

 

import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.List;

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 WeatherReport {
 /**
  * 15.* 获取SOAP的请求头,并替换其中的标志符号为用户输入的城市
  *
  * @param city
  *            用户输入的城市名称
  * @return 客户将要发送给服务器的SOAP请求
  */
 private static String getSoapRequest(String city) {
  StringBuilder sb = new StringBuilder();
  sb.append("<?xml version=/"1.0/" encoding=/"utf-8/"?>"
      + "<soap:Envelope xmlns:xsi=/"http://www.w3.org/2001/XMLSchema-instance/" "
      + "xmlns:xsd=/"http://www.w3.org/2001/XMLSchema/" "
      + "xmlns:soap=/"http://schemas.xmlsoap.org/soap/envelope//">"
      + "<soap:Body>    <getWeatherbyCityName xmlns=/"http://WebXml.com.cn//">"
      + "<theCityName>" + city
      + "</theCityName>    </getWeatherbyCityName>"
      + "</soap:Body></soap:Envelope>");
  return sb.toString();
 }           
                 
 /**
  * 用户把SOAP请求发送给服务器端,并返回服务器点返回的输入流
  *
  * @param city
  *        用户输入的城市名称
  * @return 服务器端返回的输入流,供客户端读取
  * @throws Exception
  *           
  */
 private static InputStream getSoapInputStream(String city) throws Exception {
  try {      
   String soap = getSoapRequest(city);
   if (soap == null) {
    return null;
   }      
   URL url = new URL(
     "http://www.webxml.com.cn/WebServices/WeatherWebService.asmx");
   URLConnection conn = url.openConnection();
   conn.setUseCaches(false);
   conn.setDoInput(true);
   conn.setDoOutput(true);

   conn.setRequestProperty("Content-Length", Integer.toString(soap
     .length()));
   conn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
   conn.setRequestProperty("SOAPAction",
     "http://WebXml.com.cn/getWeatherbyCityName");

   OutputStream os = conn.getOutputStream();
   OutputStreamWriter osw = new OutputStreamWriter(os, "utf-8");
   osw.write(soap);
   osw.flush();
   osw.close();

   InputStream is = conn.getInputStream();
   return is;
  } catch (Exception e) {
   e.printStackTrace();
   return null;
  }

}
 
 
 
 
 public static String getWeather(String city) {
  try {     
   Document doc;
   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
   dbf.setNamespaceAware(true);
   DocumentBuilder db = dbf.newDocumentBuilder();
   InputStream is = getSoapInputStream(city);
   doc = db.parse(is);
   NodeList nl = doc.getElementsByTagName("string");
   StringBuffer sb = new StringBuffer();
   for (int count = 0; count < nl.getLength(); count++) {
    Node n = nl.item(count);
    if (n.getFirstChild().getNodeValue().equals("查询结果为空!")) {
     sb = new StringBuffer("#");
     break;
    }
    sb.append(n.getFirstChild().getNodeValue() + "#/n");
   }
   is.close();
   System.out.println(sb.toString());
   return sb.toString();
  
   
  } catch (Exception e) {
   e.printStackTrace();
   return "发生异常未能获取城市温度";
  
  }
 }     

 private static String getTodayeWeather() {
  String weather = "";
  String city = "武汉";//web中应该根据用户的输入获得城市
  StringBuffer sb = new StringBuffer();
  try {
   Document doc;       
   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
   dbf.setNamespaceAware(true);
   DocumentBuilder db = dbf.newDocumentBuilder();
   InputStream is =getSoapInputStream(city);
   doc = db.parse(is);
   NodeList nl = doc.getElementsByTagName("string");
   for (int count = 0; count < nl.getLength(); count++) {
    Node n = nl.item(count);
    if (n.getFirstChild().getNodeValue().equals("查询结果为空!")) {
     sb = new StringBuffer("#");
     break;
    }
    sb.append(n.getFirstChild().getNodeValue() + "#/n");
   }
   is.close();
  } catch (Exception e) {
   e.printStackTrace();
   return "发生异常未能获取城市温度";
  }
  String wearths = sb.toString();
  String[] weath = wearths.split("#");
  
  for (int c=0;c<weath.length;c++){
   System.out.println(c+":"+weath[c].trim());
   }
  
  String thisweath = weath[6];
  String[] thisweat = thisweath.split(" ");      
  weather = thisweat[1] + " " + weath[5];
  
  
  
  return weather;
 }

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 private static List<String> getThreeDaysWeather(String city) {
  String weather1 = "";
  String weather2="";
  String weather3="";
  List<String>all=new ArrayList<String>();
  List<String>allerr=new ArrayList<String>();
  allerr.add("发生异常未能获取城市温度");
  //String city = "武汉";//web中应该根据用户的输入获得城市
  StringBuffer sb = new StringBuffer();
  try {              
   Document doc;       
   DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
   dbf.setNamespaceAware(true);
   DocumentBuilder db = dbf.newDocumentBuilder();
   InputStream is =getSoapInputStream(city);
   doc = db.parse(is);
   NodeList nl = doc.getElementsByTagName("string");
   for (int count = 0; count < nl.getLength(); count++) {
    Node n = nl.item(count);
    if (n.getFirstChild().getNodeValue().equals("查询结果为空!")) {
     sb = new StringBuffer("#");
     break;
    }
    sb.append(n.getFirstChild().getNodeValue() + "#/n");
   }
   is.close();
  } catch (Exception e) {
   e.printStackTrace();
   return allerr;
  }
  String wearths = sb.toString();
  String[] weath = wearths.split("#");
  
  //for (int c=0;c<weath.length;c++){
 //  System.out.println(c+":"+weath[c].trim());
  // }
   System.out.println(weath.length);
  
  String thisweath = weath[6];
  String[] thisweat = thisweath.split(" ");      
  weather1 = thisweat[1] + " " + weath[5];
  weather1="今天"+" "+weather1;
  all.add(weather1);
  
 // String thisweath2 = weath[12];
 // String[] thisweat2 = thisweath2.split(" ");      
 // weather2 = thisweat2[1] + " " + weath[11];
  weather2=weath[13]+"  "+weath[12];
  all.add(weather2); 
 //for(int i=5;i<=6;i++){
  
 //System.out.println(weath[17]); 
 
 //}
  
  weather3=weath[18]+"  "+weath[17];
  all.add(weather3); 
  
  
   
  
 return all;
 }

 
 
 
 
 
 
 
 
         
          
      
 /**     
  * 测试用
  * 在web项目中可以直接调用其中的方法,直接得到某地当天或未来两天的天气状态
  * @param args
  * @throws Exception
  */
 public static void main(String[] args) throws Exception {
  //System.out.println(getTodayeWeather());
  //getTodayeWeather();
  try {
   List<String>all=new ArrayList<String>();
   
   all=getThreeDaysWeather("汕头");
   for(String a:all){
    
    System.out.println(a);
   }
  } catch (Exception e) {
   //e.printStackTrace();
   System.out.println("网络异常");
  }
//  System.out.println("po&oi".split("&").length) ;
  // System.out.println("##".split("#").length) ;
 }

 
         }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值