您好,登錄后才能下訂單哦!
android中怎么實現HttpClient get請求與post請求,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.NameValuePair; import org.apache.http.client.HttpClient; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; /** * HTTP通信的工具類 */ public final class HttpUtil { /** 定義HTTP通信的對象 */ private static HttpClient httpClient = new DefaultHttpClient(); /** 定義基礎的請求URL */ private static final String BASE_URL = "http://wenwen.soso.com/p/20120206/20120206134715-1866254203.jpg"; /** * 發送GET請求方法 * @param requestUrl 請求的URL * @return 響應的數據 */ public static InputStream sendGetRequest(String requestUrl){ /** 創建get請求對象 */ HttpGet httpGet = new HttpGet(BASE_URL + requestUrl); try { /** 執行GET請求 */ HttpResponse response = httpClient.execute(httpGet); /** 判斷響應的狀態碼: 200代表響應成功 */ if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){ /** 獲取響應的實體 */ HttpEntity entity = response.getEntity(); /** 返回響應的數據 */ return entity.getContent(); //當需要返回為輸入流InputStream時的返回值 //return EntityUtils.toString(entity); // 當返回的類型為Json數據時,調用此返回方法 } } catch (Exception e) { e.printStackTrace(); } return null; } /** * 發送post請求 * @param requestUrl 請求的URL * @param params 請求的參數 * @return 響應的數據 */ public static InputStream sendPostRequest(String requestUrl, Map<String, String> params){ /** 創建post請求對象 */ HttpPost httpPost = new HttpPost(BASE_URL + requestUrl); try { /** 設置請求參數 */ if (params != null && params.size() > 0){ /** 將map轉化成list集合 */ List<NameValuePair> paramLists = new ArrayList<NameValuePair>(); for (Map.Entry<String, String> map : params.entrySet()){ paramLists.add(new BasicNameValuePair(map.getKey(), map.getValue())); } /** 為POST請設置請求參數 */ httpPost.setEntity(new UrlEncodedFormEntity(paramLists, "UTF-8")); } /** 執行post請求 */ HttpResponse response = httpClient.execute(httpPost); /** 對響應的狀態做判斷 */ if (response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){ /** 服務器響應成功 , 獲取響應實體*/ HttpEntity entity = response.getEntity(); /** 返回響應數據 */ return entity.getContent(); //當需要返回為輸入流InputStream時的返回值 //return EntityUtils.toString(entity); } } catch (Exception e) { System.out.println(BASE_URL + requestUrl); e.printStackTrace(); } return null; } }
當然,基本請求Url BASE_URL 需要我們視情況而定,當我們需要的返回值類型為輸入流時
return entity.getContent(); //當需要返回為輸入流InputStream時的返回值
當我們需要的返回值類型為Json格式字符串時,我們返回
return EntityUtils.toString(entity); // 當返回的類型為Json數據時,調用此返回方法下面是一個調用的Demo
XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:orientation="vertical" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="連接" android:onClick="check"/> <ImageView android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/iv"/> </LinearLayout>
代碼調用:
public void check(View v){ new Thread(){ public void run() { InputStream is = HttpUtil.sendGetRequest(""); Bitmap map = BitmapFactory.decodeStream(is); Message msg = Message.obtain(); msg.obj = map; handler.sendMessage(msg); }; }.start(); } private Handler handler = new Handler(){ public void handleMessage(Message msg) { iv.setScaleType(ScaleType.FIT_CENTER); iv.setImageBitmap((Bitmap) msg.obj); }; };
關于android中怎么實現HttpClient get請求與post請求問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。