您好,登錄后才能下訂單哦!
volley的好處這里就不介紹了,這些資料很多,這里只記錄volley的最簡單直接的用法:
private RequestQueue mQueue; mQueue = Volley.newRequestQueue(this);// 網絡請求隊列創建 //這里創建一個HashMap,用來存放參數,發給服務器 Map<String, String> params = new HashMap<String, String>(); params.put("latitude", latitude+"");// 經度 params.put("longitude", longitude+"");// 緯度 params.put("username", "liuxd");// 用戶名 params.put("weiz", tv.getText().toString());// 地址 params.put("imei", id);// 設備號 params.put("type", "1");// 類型:1 //這里對服務器進行請求 JsonObjectRequest newMi***equest = new JsonObjectRequest( Request.Method.POST, url, new JSONObject(params), new Response.Listener<JSONObject>() { // 請求成功 @Override public void onResponse(JSONObject jsonobj) { Toast.makeText(getApplicationContext(), "簽到成功", 0).show(); } } } }, new Response.ErrorListener() { // 請求失敗 @Override public void onErrorResponse(VolleyError error) { Toast.makeText(getApplicationContext(), "簽到失敗,請檢查網絡", 0).show(); } }); // 加入隊列 mQueue.add(newMi***equest); // 開始 mQueue.start(); }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。