Android利用Soap读取WebService并且解析XML的DataSet数据

摘抄至:http://blog.csdn.net/comeonyangzi/article/details/25722275

一、Soap的结构

Android利用Soap读取WebService并且解析XML的DataSet数据_第1张图片

     调用webService需要以下几个参数:命名空间、Soap ActionWSDLURL、方法名。接下来以调用火车列车信息数据为例,webService地址为:webservice.webxml.com.cn/WebServices/TrainTimeWebService.asmx?op=getDetailInfoByTrainCode

二、调用WebService

    一般来说,调用webService通常需要几个步骤,在调用之前,我们需要下载Soapjar包,网上有很多,不再赘述。

    1、参数设置:上面说到的几个参数都要先设置,这主要依赖于你要调用的web'Service的网址:

[java] view plain copy print ?
  1. // 命名空间     
  2. String nameSpace = "http://WebXml.com.cn/";     
  3. // 调用的方法名称     
  4. String methodName = "getDetailInfoByTrainCode";     
  5. // EndPoint     
  6. String endPoint = "http//webservice.webxml.com.cn/WebServices/TrainTimeWebService.asmx";     
  7. // SOAP Action     
  8. String soapAction = "http//WebXml.com.cn/getDetailInfoByTrainCode";     



 

     2、指定命名空间与调用方法名

[java] view plain copy print ?
  1. // 指定WebService的命名空间和调用的方法名     
  2. SoapObject rpc = new SoapObject(nameSpace, methodName);   

         3、设置参数:

[java] view plain copy print ?
  1. // 设置需调用WebService接口需要传入的两个参数TrainCode、userId     
  2. rpc.addProperty("TrainCode", params[0]);     
  3. rpc.addProperty("UserID","");  


 

        4、生成调用WebService方法的SOAP请求信息

[java] view plain copy print ?
  1. // 生成调用WebService方法的SOAP请求信息,并指定SOAP的版本     
  2. SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);  
  3. envelope.bodyOut = rpc;  



 

       5、是否允许调用.Net的WebService

[java] view plain copy print ?
  1. // 设置是否调用的是dotNet开发的WebService     
  2. envelope.dotNet = true;     
  3. // 等价于envelope.bodyOut = rpc;     
  4. envelope.setOutputSoapObject(rpc);  


 

       6、创建Http对象

[java] view plain copy print ?
  1. HttpTransportSE transport = new HttpTransportSE(endPoint);      

       7、调用WebService方法

[java] view plain copy print ?
  1. try {     
  2.     // 调用WebService     
  3.     transport.call(soapAction, envelope);     
  4. } catch (Exception e) {     
  5.     e.printStackTrace();     
  6. }    


 

       8、返回SoapObject对象

[java] view plain copy print ?
  1. SoapObject object=null
  2. // 获取返回的数据     
  3. if(envelope.bodyIn instanceof SoapFault){ 
  4.     String str=((SoapFault)envelope.bodyIn).faultstring; 
  5.     System.out.println("2"+str); 
  6.      
  7. else
  8.       object = (SoapObject) envelope.bodyIn;                   


 

       三、解析WebService中的DataSet数据

           由于列车时刻表是DataSet数据,所以我们必须对返回的结果进行解析,在网上查找方法后,自己琢磨终于成功解析,方法如下:

[java] view plain copy print ?
  1. SoapObject soap1=(SoapObject)object.getProperty("getDetailInfoByTrainCodeResult"); 
  2. SoapObject childs=(SoapObject)soap1.getProperty(1); 
  3. SoapObject soap2=(SoapObject)childs.getProperty(0); 
  4. /// 
  5. for(int i=0;i<soap2.getPropertyCount();i++){ 
  6. SoapObject soap3=(SoapObject)soap2.getProperty(i); 
  7. /// 
  8.     Info info=new Info(); 
  9.     info.setStation(soap3.getProperty(0).toString()); 
  10.     info.setArriveTime(soap3.getProperty(1).toString()); 
  11.     info.setStartTime(soap3.getProperty(2).toString()); 
  12.     info.setKm(soap3.getProperty(3).toString()); 
  13.     Raininfo.add(info); 
  14. //result=soap3.getProperty(3).toString(); 


 

        我自己定义了一个Info的model类,用来存放我读取的火车时刻数据,这么多getProperty方法,有可能会看着头晕,接下来接一下xml的截图说明,相信大家一看就会:

Android利用Soap读取WebService并且解析XML的DataSet数据_第2张图片

PS:如果数据不是DataSet的话,不用这么麻烦,直接就可以利用正则表达式进行解析。

 

你可能感兴趣的:(android,wsdl,webservice,正则表达式,dataset)