Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第104章、Android訪問WebService(從零開始學Android)

第104章、Android訪問WebService(從零開始學Android)

編輯:Android技術基礎

天氣預報、手機歸屬地查詢……,包括與SQL SERVER數據庫遠程交互都可以通過Web Service搞定。

准備工作:

(1)第一步,下載定位Android locSDK3.3。

(2)第二步,修改擴展名zip為jar

下載之後,文件名為:ksoap2-android-assembly-2.6.0-jar-with-dependencies.zip

請修改為:ksoap2-android-assembly-2.6.0-jar-with-dependencies.jar

\
准備工作至此已經結束。

 

一、工程配置

1、第一步,在工程裡新建libs文件夾,將開發包裡的ksoap2-android-assembly-2.6.0-jar-with-dependencies.jar拷貝到libs根目錄下,拷貝完成後的工程目錄如下圖所示;

\

2、第二步:在工程屬性->Java Build Path->Libraries中選擇“Add External JARs”,選定ksoap2-android-assembly-2.6.0-jar-with-dependencies.jar,確定後返回。

通過以上兩步操作後,您就可以正常使用Web Service的功能了。

二、設計界面

1、布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <EditText  
  8.         android:id="@+id/mobile"  
  9.         android:layout_width="match_parent"  
  10.         android:layout_height="wrap_content"  
  11.         android:inputType="phone" >  
  12.   
  13.         <requestFocus />  
  14.     </EditText>  
  15.   
  16.     <Button  
  17.         android:id="@+id/search"  
  18.         android:layout_width="wrap_content"  
  19.         android:layout_height="wrap_content"  
  20.         android:text="手機歸屬地查詢" />  
  21.   
  22.     <TextView  
  23.         android:id="@+id/location"  
  24.         android:layout_width="wrap_content"  
  25.         android:layout_height="wrap_content"  
  26.         android:textSize="25sp" />  
  27.   
  28. </LinearLayout>  


三、程序文件

1、MainActivity.java
打開“src/com.genwoxue.baidulocation/MainActivity.java”文件。
然後輸入以下代碼:

[html] view plain copy  
  1. package com.genwoxue.webservice;  
  2.   
  3.   
  4. import org.ksoap2.SoapEnvelope;  
  5. import org.ksoap2.serialization.SoapObject;  
  6. import org.ksoap2.serialization.SoapSerializationEnvelope;  
  7. import org.ksoap2.transport.HttpTransportSE;  
  8. import android.app.Activity;    
  9. import android.os.AsyncTask;  
  10. import android.os.Bundle;    
  11. import android.view.View;    
  12. import android.view.View.OnClickListener;  
  13. import android.widget.Button;  
  14. import android.widget.EditText;    
  15. import android.widget.TextView;    
  16.     
  17. public class MainActivity extends Activity {    
  18.     private EditText etMobile=null;    
  19.     private TextView tvLocation=null;   
  20.     private Button btnSearch=null;  
  21.       
  22.     public void onCreate(Bundle savedInstanceState) {    
  23.         super.onCreate(savedInstanceState);    
  24.         setContentView(R.layout.activity_main);    
  25.         etMobile = (EditText) findViewById(R.id.mobile);    
  26.         tvLocation = (TextView) findViewById(R.id.location);    
  27.         btnSearch=(Button)super.findViewById(R.id.search);  
  28.         btnSearch.setOnClickListener(new OnClickListener(){  
  29.             @Override  
  30.             public void onClick(View view){  
  31.                 String mobile = etMobile.getText().toString();    
  32.                 PageTask task = new PageTask();        
  33.                 task.execute(mobile);      
  34.            }  
  35.        });  
  36.     }    
  37.         
  38.         
  39.     /* 四個步驟:  
  40.      * (1)onPreExecute(),執行預處理,它運行於UI線程,  
  41.      * 可以為後台任務做一些准備工作,比如繪制一個進度條控件。  
  42.      * (2)doInBackground(Params...),後台進程執行的具體計算在這裡實現,  
  43.      * doInBackground(Params...)是AsyncTask的關鍵,此方法必須重載。  
  44.      * 在這個方法內可以使用 publishProgress(Progress...)改變當前的進度值。  
  45.      * (3)onProgressUpdate(Progress...),運行於UI線程。如果  
  46.      * 在doInBackground(Params...) 中使用了publishProgress(Progress...),就會  
  47.      * 觸發這個方法。在這裡可以對進度條控件根據進度值做出具體的響應。  
  48.      * (4)onPostExecute(Result),運行於UI線程,可以對後台任務的結果做出處理,結果  
  49.      * 就是doInBackground(Params...)的返回值。此方法也要經常重載,如果Result為  
  50.      * null表明後台任務沒有完成(被取消或者出現異常)。    *   
  51.      */  
  52.     class PageTask extends AsyncTask<String, Integer, String> {      
  53.         // (1)任務啟動  
  54.         @Override          
  55.         protected void onPreExecute() {       
  56.             tvLocation.setText("task_started");          
  57.         }    
  58.           
  59.         //(2)後台執行:主要工作在這裡實現(調用WebService就是在這裡完成的)  
  60.         @Override            
  61.         protected String doInBackground(String... params) {     
  62.             String result = null;  
  63.             // 命名空間    
  64.             String nameSpace = "http://WebXml.com.cn/";    
  65.             // 調用的方法名稱    
  66.             String methodName = "getMobileCodeInfo";    
  67.             // EndPoint    
  68.             String endPoint = "http://webservice.webxml.com.cn/WebServices/MobileCodeWS.asmx";    
  69.             // SOAP Action    
  70.             String soapAction = "http://WebXml.com.cn/getMobileCodeInfo";    
  71.         
  72.             // 指定WebService的命名空間和調用的方法名    
  73.             SoapObject rpc = new SoapObject(nameSpace, methodName);    
  74.         
  75.             // 設置需調用WebService接口需要傳入的兩個參數mobileCode、userId    
  76.             rpc.addProperty("mobileCode", params[0]);    
  77.             rpc.addProperty("userId", "");    
  78.         
  79.             // 生成調用WebService方法的SOAP請求信息,並指定SOAP的版本    
  80.             SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);    
  81.         
  82.             envelope.bodyOut = rpc;    
  83.             // 設置是否調用的是dotNet開發的WebService    
  84.             envelope.dotNet = true;    
  85.             // 等價於envelope.bodyOut = rpc;    
  86.             envelope.setOutputSoapObject(rpc);    
  87.         
  88.             HttpTransportSE transport = new HttpTransportSE(endPoint);    
  89.             try {    
  90.                 // 調用WebService    
  91.                 transport.call(soapAction, envelope);    
  92.             } catch (Exception e) {    
  93.                 e.printStackTrace();    
  94.             }    
  95.         
  96.             // 獲取返回的數據    
  97.             SoapObject object = (SoapObject) envelope.bodyIn;    
  98.             // 獲取返回的結果    
  99.             result = object.getProperty(0).toString();  
  100.             return result;  
  101.         }            
  102.           
  103.           
  104.         //(3)由doInBackground中的publishProgress(Progress...)觸發onProgressUpdate這個方法  
  105.         @Override         
  106.         protected void onProgressUpdate(Integer... values) {        
  107.             // 更新進度              
  108.             tvLocation.setText("正在處理中……"+values[0]);      
  109.         }        
  110.                   
  111.         //(4)可以對後台任務的結果做出處理,結果就是doInBackground(Params...)的返回值。  
  112.         @Override       
  113.         protected void onPostExecute(String result) {      
  114.             // 返回HTML頁面的內容                
  115.             tvLocation.setText(result);         
  116.         }    
  117.           
  118.     }     
  119. }  


四、配置文件
打開“AndroidManifest.xml”文件。

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.webservice"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="10"  
  9.         android:targetSdkVersion="15" />  
  10.     <uses-permission android:name="android.permission.INTERNET"/>  
  11.     <application  
  12.         android:icon="@drawable/ic_launcher"  
  13.         android:label="@string/app_name" >  
  14.         <activity  
  15.             android:name=".MainActivity"  
  16.             android:label="@string/app_name" >  
  17.             <intent-filter>  
  18.                 <action android:name="android.intent.action.MAIN" />  
  19.                 <category android:name="android.intent.category.LAUNCHER" />  
  20.             </intent-filter>  
  21.         </activity>  
  22.     </application>  
  23.   
  24. </manifest>  

注意:由於是調用WebService,請注意在AndroidManifest.xml加上由於互聯網權限。

 <uses-permission android:name="android.permission.INTERNET"/>

五、運行結果
\

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved