Java 调用天气Webservice详解及实例代码

所属分类: 软件编程 / java 阅读数: 41
收藏 0 赞 0 分享

Java调用天气Webservice的小应用

废话不多说,直接贴代码:

 CityReq.java

package com.weather;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name="getWeatherbyCityName",namespace="http://WebXml.com.cn/")
public class CityReq {

  private String theCityName;

  public String getTheCityName() {
    return theCityName;
  }

  @XmlElement(name="theCityName",namespace="http://WebXml.com.cn/")
  public void setTheCityName(String theCityName) {
    this.theCityName = theCityName;
  }

  
}

WeatherWebServiceTest.java

package com.weather;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Marshaller;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.soap.MessageFactory;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPConstants;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPMessage;

import org.w3c.dom.Document;
public class WeatherWebServiceTest {

  public static void main(String[] args) {
    // TODO Auto-generated method stub
    weather();
  }
  static void weather(){
    System.out.println("开始登陆...");
    String wsdl="http://www.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl";
    System.out.println("wsdl:"+wsdl);
    HttpURLConnection urlconn=null;
    InputStream ins=null;
    OutputStream ous=null;
    try {
      URL u=new URL(wsdl);
      urlconn=(HttpURLConnection)u.openConnection();
      urlconn.setDoOutput(true);
      urlconn.setRequestMethod("POST");
      urlconn.setRequestProperty("Content-Type", "application/soap+xml; charset=utf-8");
      //urlconn.setRequestProperty("Content-Type", "text/xml; charset=utf-8");
      
      //发送数据
      ous=urlconn.getOutputStream();
      
      
      Document document=DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
      //编组
      Marshaller marsh=JAXBContext.newInstance(CityReq.class).createMarshaller();
      CityReq xmlf=new CityReq();
      xmlf.setTheCityName("北京");
      //JAXB.marshal(xmlf, new PrintWriter(System.out));
      marsh.marshal(xmlf, document);
      //创建soapmessage对象
      SOAPMessage soapMessage=MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL).createMessage();
      SOAPBody soapBody=soapMessage.getSOAPBody();
      soapBody.addDocument(document);
      SOAPEnvelope soapEnvelope = soapMessage.getSOAPPart().getEnvelope();
      soapEnvelope.removeNamespaceDeclaration("env");
      soapEnvelope.addNamespaceDeclaration("soap12", "http://www.w3.org/2003/05/soap-envelope");
      soapEnvelope.addNamespaceDeclaration("xsi", "http://www.w3.org/2001/XMLSchema-instance");
      soapEnvelope.addNamespaceDeclaration("xsd", "http://www.w3.org/2001/XMLSchema");
      soapEnvelope.setPrefix("soap12");
      soapEnvelope.removeChild(soapEnvelope.getHeader());
      soapBody.setPrefix("soap12");
      //发送数据
      soapMessage.writeTo(ous);
      // soapMessage.writeTo(System.out);
      System.out.println(urlconn.getResponseCode());
      System.out.println(urlconn.getResponseMessage());
      //接收数据
      ins=urlconn.getInputStream();
      //接收的数据需要解组?
      StringBuffer respMsg=new StringBuffer();
      byte[] bytes=new byte[1024*1024];
      int a=-1;
      while ((a=ins.read(bytes))!=-1) {
        respMsg.append(new String(bytes,0,a));
      }
      System.out.println(respMsg.length());
      System.out.println(respMsg);
      
      //解组的方式
     /* SOAPMessage responseMessage=MessageFactory.newInstance(SOAPConstants.SOAP_1_2_PROTOCOL).createMessage(null, ins);
      Unmarshaller unmarsh=JAXBContext.newInstance(CityResp.class).createUnmarshaller();
      JAXBElement<CityResp> reponse= unmarsh.unmarshal(responseMessage.getSOAPBody().extractContentAsDocument(), CityResp.class);
      CityResp uresp= reponse.getValue();
      System.out.println(uresp.getResult());*/
      
      ous.close();
      ins.close();
      urlconn.disconnect();
    } catch (Exception e) {
      e.printStackTrace();
    }finally{
      
    }
  }
  
   
}

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

更多精彩内容其他人还在看

Java的面向对象编程基本概念学习笔记整理

这篇文章主要介绍了Java的面向对象编程基本概念学习笔记整理,包括类与方法以及多态等支持面向对象语言中的重要特点,需要的朋友可以参考下
收藏 0 赞 0 分享

Eclipse下编写java程序突然不会自动生成R.java文件和包的解决办法

这篇文章主要介绍了Eclipse下编写java程序突然不会自动生成R.java文件和包的解决办法 的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

基于Java实现杨辉三角 LeetCode Pascal's Triangle

这篇文章主要介绍了基于Java实现杨辉三角 LeetCode Pascal's Triangle的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

Java中Spring获取bean方法小结

Spring是一个轻量级的控制反转(IoC)和面向切面(AOP)的容器框架,如何在程序中获取Spring配置的bean呢?下面通过本文给大家介绍Java中Spring获取bean方法小结,对spring获取bean方法相关知识感兴趣的朋友一起学习吧
收藏 0 赞 0 分享

如何计算Java对象占用了多少空间?

在Java中没有sizeof运算符,所以没办法知道一个对象到底占用了多大的空间,但是在分配对象的时候会有一些基本的规则,我们根据这些规则大致能判断出来对象大小,需要的朋友可以参考下
收藏 0 赞 0 分享

剖析Java中的事件处理与异常处理机制

这篇文章主要介绍了Java中的事件处理与异常处理机制,讲解Java是如何对事件或者异常作出响应以及定义异常的一些方法,需要的朋友可以参考下
收藏 0 赞 0 分享

详解Java的Struts2框架的结构及其数据转移方式

这篇文章主要介绍了详解Java的Struts2框架的结构及其数据转移方式,Struts框架是Java的SSH三大web开发框架之一,需要的朋友可以参考下
收藏 0 赞 0 分享

Java封装好的mail包发送电子邮件的类

本文给大家分享了2个java封装好的mail包发送电子邮件的类,并附上使用方法,小伙伴们可以根据自己的需求自由选择。
收藏 0 赞 0 分享

在Java的Struts中判断是否调用AJAX及用拦截器对其优化

这篇文章主要介绍了在Java的Struts中判断是否调用AJAX及用拦截器对其优化的方法,Struts框架是Java的SSH三大web开发框架之一,需要的朋友可以参考下
收藏 0 赞 0 分享

java多线程Future和Callable类示例分享

JAVA多线程实现方式主要有三种:继承Thread类、实现Runnable接口、使用ExecutorService、Callable、Future实现有返回结果的多线程。其中前两种方式线程执行完后都没有返回值,只有最后一种是带返回值的。今天我们就来研究下Future和Callab
收藏 0 赞 0 分享
查看更多