中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在Android中利用 ksoap2對WebService進行調用

發布時間:2021-03-10 14:44:36 來源:億速云 閱讀:189 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關怎么在Android中利用 ksoap2對WebService進行調用 ,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1.下載 ksoap2 的 jar 文件

下載地址:ksoap2-android-assembly-3.6.1-jar-with-dependencies.jar

下載完成后依賴到自己的項目中即可。

2.封裝網絡訪問工具類

直接貼代碼了,注釋寫的很詳細,根據自己的需要加以修改。

/**
 * 訪問 WebService 的工具類
 */
public class WebServiceUtil {

 // 命名空間
 private static final String NAMESPACE = "your namespace";
 // WebService 服務器地址
 private static final String ENDPOINT = "your address";

 // 一般自己公司開發都是需要身份驗證的
 // 身份驗證方法名
 private static final String ID_HEADERNAME = "verify method";
 // 身份驗證 key
 private static final String ID_NAME_PARAM = "verify key1";
 // 身份驗證 value
 private static final String ID_NAME_VALUE = "verify value1";
 // 身份驗證 key
 private static final String ID_PASSWORD_PARAM = "verify key2";
 // 身份驗證 value
 private static final String ID_PASSWORD_VALUE = "verify value2";

 // 訪問的服務器是否由 dotNet 開發
 public static boolean isDotNet = true;

 // 線程池的大小
 private static int threadSize = 5;
 // 創建一個可重用固定線程數的線程池,以共享的無界隊列方式來運行這些線程
 private static ExecutorService threadPool = Executors.newFixedThreadPool(threadSize);

 // 連接響應標示
 public static final int SUCCESS_FLAG = 0;
 public static final int ERROR_FLAG = 1;

 /**
  * 調用 WebService 接口
  *
  * @param methodName  WebService 的調用方法名
  * @param mapParams  WebService 的參數集合,可以為 null
  * @param reponseCallBack 服務器響應接口
  */
 public static void call(final String methodName, SimpleArrayMap<String, Object> mapParams, final ResponseCallBack reponseCallBack) {

  // 創建 HttpTransportSE 對象,傳遞 WebService 服務器地址
  final HttpTransportSE transport = new HttpTransportSE(ENDPOINT);
  transport.debug = true;

  // 身份驗證(如果需要的話)
  Element[] header = new Element[1];
  // 傳入命名空間與驗證的方法名
  header[0] = new Element().createElement(NAMESPACE, ID_HEADERNAME);
  // 創建參數 1
  Element userName = new Element().createElement(NAMESPACE, ID_NAME_PARAM);
  userName.addChild(Node.TEXT, ID_NAME_VALUE);
  header[0].addChild(Node.ELEMENT, userName);
  // 創建參數 2
  Element password = new Element().createElement(NAMESPACE, ID_PASSWORD_PARAM);
  password.addChild(Node.TEXT, ID_PASSWORD_VALUE);
  header[0].addChild(Node.ELEMENT, password);

  // 創建 SoapObject 對象用于傳遞請求參數
  final SoapObject soapObject = new SoapObject(NAMESPACE, methodName);
  // 添加參數
  if (mapParams != null) {
   for (int index = 0; index < mapParams.size(); index++) {
    String key = mapParams.keyAt(index);
    // 多數情況下,傳遞的參數都為 String 類型,不過少數情況下會有 boolean 類型,所以用 Object 代替
    Object value = mapParams.get(key);
    soapObject.addProperty(key, value);
   }
  }

  // 實例化 SoapSerializationEnvelope,傳入 WebService 的 SOAP 協議的版本號
  // 這里有 VER10 VER11 VER12 三種版本,根據自己需要填寫
  final SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
  envelope.headerOut = header; // 身份驗證(如果需要的話)
  envelope.dotNet = isDotNet; // 設置是否調用的是 .Net 開發的 WebService
  envelope.bodyOut = soapObject; // 傳遞參數
  //envelope.setOutputSoapObject(soapObject);// 與上一句等價

  // 用于與主線程通信的 Handler
  final Handler responseHandler = new Handler() {

   @Override
   public void handleMessage(Message msg) {
    super.handleMessage(msg);
    // 根據消息的 arg1 值判斷調用哪個接口
    if (msg.arg1 == SUCCESS_FLAG) {
     reponseCallBack.onSuccess((String) msg.obj);
    } else {
     reponseCallBack.onError((Exception) msg.obj);
    }
   }

  };

  // 提交一個子線程到線程池并在此線種內調用 WebService
  if (threadPool == null || threadPool.isShutdown()) {
   threadPool = Executors.newFixedThreadPool(threadSize);
  }
  threadPool.submit(new Runnable() {

   @Override
   public void run() {
    String result = null;
    try {
     // 解決 EOFException
     System.setProperty("http.keepAlive", "false");
     // 連接服務器,有的服務可能不需要傳遞 NAMESPACE + methodName,第一個參數傳遞 null
     transport.call(null, envelope);
     if (envelope.getResponse() != null) {
      // 獲取服務器響應返回的 SoapObject
      SoapObject object = (SoapObject) envelope.bodyIn;
      result = object.getProperty(0).toString();
     }
    } catch (IOException e) {
     // 當 call 方法的第一個參數為 null 時會有一定的概念拋 IO 異常
     // 因此需要需要捕捉此異常后用命名空間加方法名作為參數重新連接
     // e.printStackTrace();
     try {
      transport.call(NAMESPACE + methodName, envelope);
      if (envelope.getResponse() != null) {
       // 獲取服務器響應返回的 SoapObject
       SoapObject object = (SoapObject) envelope.bodyIn;
       result = object.getProperty(0).toString();
      }
     } catch (Exception e1) {
      // e1.printStackTrace();
      responseHandler.sendMessage(responseHandler.obtainMessage(0, ERROR_FLAG, 0, e1));
     }
    } catch (XmlPullParserException e) {
     // e.printStackTrace();
     responseHandler.sendMessage(responseHandler.obtainMessage(0, ERROR_FLAG, 0, e));
    } finally {
     // 將獲取的消息利用 Handler 發送到主線程
     responseHandler.sendMessage(responseHandler.obtainMessage(0, SUCCESS_FLAG, 0, result));
    }
   }
  });
 }

 /**
  * 設置線程池的大小
  *
  * @param threadSize
  */
 public static void setThreadSize(int threadSize) {
  WebServiceUtil.threadSize = threadSize;
  threadPool.shutdownNow();
  threadPool = Executors.newFixedThreadPool(WebServiceUtil.threadSize);
 }

 /**
  * 服務器響應接口,在響應后需要回調此接口
  */
 public interface ResponseCallBack {

  void onSuccess(String result);

  void onError(Exception e);
 }

}

3.在 Activity 中使用

private void request() {
  SimpleArrayMap<String, Object> map = new SimpleArrayMap<>();
  map.put("key1", "value1");
  map.put("key2", "value2");
  WebServiceUtil.call("method name", map, new WebServiceUtil.ResponseCallBack() {
   @Override
   public void onSuccess(String result) {
    // 請求成功
   }

   @Override
   public void onError(Exception e) {
    // 請求失敗
   }
  });
 }

以上就是怎么在Android中利用 ksoap2對WebService進行調用 ,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

资源县| 左贡县| 新营市| 锦州市| 海盐县| 新田县| 邵阳市| 和平县| 郸城县| 达拉特旗| 基隆市| 岑溪市| 蒙城县| 商洛市| 罗甸县| 靖江市| 高陵县| 静乐县| 余江县| 怀来县| 湖南省| 福海县| 南陵县| 沾化县| 加查县| 乃东县| 泽普县| 台东市| 阳城县| 泰兴市| 乐亭县| 滦南县| 左权县| 通化市| 沙田区| 荣昌县| 宜章县| 繁峙县| 六枝特区| 汝州市| 景宁|