首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

webservices 是什么?小弟我一点概念都没有

2013-06-26 
webservices 是什么?我一点概念都没有。我是一个菜鸟,开发经验才1年多,跪求知道下!!给个简单易懂的网站也行

webservices 是什么?我一点概念都没有。
我是一个菜鸟,开发经验才1年多,跪求知道下!!给个简单易懂的网站也行
 我想知道webservices到底是个什么东西。
 还有就是网上说的webservices地址,难道就是调用一个地址那么简单?
 我这里有一个以前朋友给的webservices的项目是查询城市的。
 
package com.huawei.util;
 
import java.io.InputStream;
 import java.io.OutputStream;
 import java.io.OutputStreamWriter;
 import java.net.URL;
 import java.net.URLConnection;
 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 {
 /**
  * 获取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;
 }
 }
 
/**
  * 对服务器端返回的XML进行解析
 * 
  * 编写者:
 * 
  * @param city
  *            用户输入的城市名称


 * @return 字符串 用,分割
 */
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();
 return sb.toString();
 } catch (Exception e) {
 e.printStackTrace();
 return null;
 }
 }

 /**
  * 测试用
 * @param args
  * @throws Exception
  */
 public static void main(String[] args) throws Exception {
 System.out.println(getWeather("北京"));
 }
 }
[解决办法]
不要把webservice想的多难 说白了也没啥,举个例子:气象局存储着一些从气象站获取的气象信息(元数据),QQ想做个天气预报显示在QQ头像旁边,他绝对不可能自己去建气象站收集气象信息。这时候就用到webservice了,气象局写一个方法把气象信息(元数据)返回出去,把这个方法的网址公开了,QQ就去请求这个方法获取气象信息,经过二次开发就可以显示为你所看到的QQ头像旁边的天气信息了。

名词:上面我说道一个元数据,为什么叫元数据呢,这些数据你是看不懂的,需要经过二次开发才会形成你所看到的天气信息。比如:我给你个经纬度,你知道具体时什么吗,但如果我反映到地图就会直观的看懂这个经纬度是某个城市或地理位置 

类似的还有地理信息、、、、、等一些

热点排行