0
我試圖在android.c中實現分頁。我現在有一個返回jsonarray的服務。Android如何使用參數調用Web服務並獲取jsonarray作爲響應
protected JSONArray doInBackground(String... params) {
JSONArray jsonArray = null;
String result = ServerConnect.readService("http://myservice.com/resbook_redberry/mobile/GetKitchenOrder");
try {
jsonArray = new JSONArray(result);
} catch (Exception e) {
e.printStackTrace();
try {
jsonArray = new JSONArray(result.substring(3));
} catch (JSONException e1) {
e1.printStackTrace();
} catch (Exception e2) {
e2.printStackTrace();
}
}
return jsonArray;
}
,但現在我需要發送的頁碼到Web服務,並得到JSONArray
作爲響應。
我需要寫HTTP後?爲了做到這一點,我應該改變什麼?
感謝您的answer..but我需要的是發佈頁號到服務器,並獲得JSON數組根據該請求。在獲取json之前,您是否將任何值發佈到服務器? – san88 2014-09-23 08:23:05
是的,urlString =「http://www.xxxxx.com?page=1」你可以在url中加入查詢字符串 – 2014-09-23 08:26:36
yes..但不幸的是它不接受通過url的參數。有沒有選擇發送參數給服務器以外的url? – san88 2014-09-23 08:37:17