91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

android中怎么實現HttpClient get請求與post請求

發布時間:2021-06-28 18:26:48 來源:億速云 閱讀:219 作者:Leah 欄目:移動開發

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請求問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

信丰县| 科尔| 怀化市| 杭州市| 葫芦岛市| 海晏县| 广南县| 大新县| 沂水县| 鲁山县| 当雄县| 浦城县| 巴塘县| 巴里| 和硕县| 大方县| 白山市| 潢川县| 饶平县| 固原市| 闵行区| 漳浦县| 沂南县| 鹰潭市| 新安县| 天长市| 香港| 双城市| 柏乡县| 涿鹿县| 伊宁市| 衡阳县| 苏尼特左旗| 辉县市| 榆社县| 新兴县| 崇礼县| 合江县| 伊金霍洛旗| 玉环县| 梓潼县|