สร้างคำขอ HTTP ด้วยแอนดรอยด์


352

ฉันค้นหาทุกที่ แต่ไม่สามารถหาคำตอบได้มีวิธีในการสร้างคำขอ HTTP อย่างง่ายหรือไม่? ฉันต้องการขอหน้า PHP / สคริปต์ในเว็บไซต์ของฉัน แต่ฉันไม่ต้องการแสดงหน้าเว็บ

ถ้าเป็นไปได้ฉันยังต้องการทำมันในพื้นหลัง (ใน BroadcastReceiver)


คำตอบ:


477

UPDATE

นี่เป็นคำตอบที่เก่ามาก ฉันจะไม่แนะนำลูกค้าของ Apache อีกต่อไปแน่นอน ใช้แทน:

คำตอบเดิม

ก่อนอื่นขอสิทธิ์ในการเข้าถึงเครือข่ายเพิ่มสิ่งต่อไปนี้ในรายการของคุณ:

<uses-permission android:name="android.permission.INTERNET" />

วิธีที่ง่ายที่สุดคือใช้ Apache http client ที่มาพร้อมกับ Android:

    HttpClient httpclient = new DefaultHttpClient();
    HttpResponse response = httpclient.execute(new HttpGet(URL));
    StatusLine statusLine = response.getStatusLine();
    if(statusLine.getStatusCode() == HttpStatus.SC_OK){
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        response.getEntity().writeTo(out);
        String responseString = out.toString();
        out.close();
        //..more logic
    } else{
        //Closes the connection.
        response.getEntity().getContent().close();
        throw new IOException(statusLine.getReasonPhrase());
    }

หากคุณต้องการให้มันรันบนเธรดแยกกันฉันขอแนะนำให้ขยาย AsyncTask:

class RequestTask extends AsyncTask<String, String, String>{

    @Override
    protected String doInBackground(String... uri) {
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response;
        String responseString = null;
        try {
            response = httpclient.execute(new HttpGet(uri[0]));
            StatusLine statusLine = response.getStatusLine();
            if(statusLine.getStatusCode() == HttpStatus.SC_OK){
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                response.getEntity().writeTo(out);
                responseString = out.toString();
                out.close();
            } else{
                //Closes the connection.
                response.getEntity().getContent().close();
                throw new IOException(statusLine.getReasonPhrase());
            }
        } catch (ClientProtocolException e) {
            //TODO Handle problems..
        } catch (IOException e) {
            //TODO Handle problems..
        }
        return responseString;
    }

    @Override
    protected void onPostExecute(String result) {
        super.onPostExecute(result);
        //Do anything with response..
    }
}

จากนั้นคุณสามารถร้องขอได้โดย:

   new RequestTask().execute("http://stackoverflow.com");

11
นี่คือบทความจากบล็อกผู้พัฒนา android อย่างเป็นทางการบน AsyncTask: android-developers.blogspot.com/2010/07/ …
Austyn Mahoney

77
สำหรับ Gingerbread หรือสูงกว่าแนะนำให้ใช้ HttpURLConnection ผ่าน apache ไลบรารี่ดูandroid-developers.blogspot.com/2011/09/ มันเก็บภาษีน้อยกว่าบนแบตเตอรี่และมีประสิทธิภาพที่ดีขึ้น
Marty

8
responseString = out.toString () จำเป็นต้องอยู่ก่อนการเรียก out.close () ที่จริงแล้วคุณควรมี out.close () ในบล็อกสุดท้าย แต่โดยรวมแล้วคำตอบที่เป็นประโยชน์มาก (+1) ขอบคุณ!
dcp

9
ในฐานะที่เป็น Honeycomb (SDK 11) วิธีการแบบอะซิงโครนัสเป็นวิธีที่จะไป NetworkOnMainThreadExceptionรับโยนเมื่อคุณพยายามที่จะเรียกร้องขอ HTTP จากหัวข้อหลัก
msrxthr

2
คำตอบนี้ยอดเยี่ยมมาก แต่ฉันจะแนะนำไม่ให้ใช้ AsyncTasks สำหรับระบบเครือข่าย พวกเขาสามารถสร้างการรั่วไหลของหน่วยความจำได้ง่ายมาก (และจริงๆแล้วตัวอย่างที่ให้ไว้จะรั่วไหล) และไม่ได้ให้คุณสมบัติทั้งหมดที่ใคร ๆ ก็คาดหวังสำหรับการร้องขอเครือข่าย พิจารณาใช้ RoboSpice สำหรับงานพื้นหลังประเภทนี้: github.com/octo-online/robospice
Snicolas

67

ยกเว้นว่าคุณมีเหตุผลที่ชัดเจนในการเลือก Apache HttpClient คุณควรเลือก java.net.URLConnection คุณสามารถพบตัวอย่างมากมายของวิธีการใช้บนเว็บ

เราได้ปรับปรุงเอกสาร Android ตั้งแต่โพสต์ต้นฉบับของคุณ: http://developer.android.com/reference/java/net/HttpURLConnection.html

และเราได้พูดคุยเกี่ยวกับการแลกเปลี่ยนในบล็อกอย่างเป็นทางการ: http://android-developers.blogspot.com/2011/09/androids-http-clients.html


13
ทำไมไม่แนะนำให้ใช้ Apache HttpClient
Ted

4
ผู้สมรู้ร่วมคิดของฉันเข้าไปในรายละเอียดที่ดีในบล็อกอย่างเป็นทางการ: android-developers.blogspot.com/2011/09/…
เอลเลียตฮิวจ์

@ElliottHughes: ฉันเห็นด้วย 100% ไม่มีการปฏิเสธว่า Apache httpclient เสนอวิธีการที่ง่ายและมุมมองที่เป็นนามธรรมมากขึ้นของโปรโตคอล แต่การเชื่อมต่อดั้งเดิมของ java นั้นไม่มีประโยชน์น้อยกว่า ด้วยบิตของมือมันเป็นเรื่องง่ายที่จะใช้เป็น httpclient และเป็นวิธีที่พกพาได้มากขึ้น
Nitin Bansal

1
ที่จริงถ้าคุณดูที่วิดีโอ Google I / O 2010 - แอปพลิเคชันไคลเอนต์ Android REST ( youtube.com/watch?v=xHXn3Kg2IQE 57min21sec) คุณจะเห็นว่า Apache HttpClient เป็นโปรแกรมที่แนะนำมากที่สุด ฉันพูด Virgil Dobjanschi (วิศวกรซอฟต์แวร์บน google ที่ทำงานบน Android Application Group) "ฉันเพียงแค่แนะนำให้คุณใช้ไคลเอนต์ HTTP Apache เพราะมันมีการใช้งานที่แข็งแกร่งยิ่งขึ้นประเภทการเชื่อมต่อ URL ของธุรกรรม HTTP ไม่ได้มีประสิทธิภาพมากที่สุด การดำเนินการและวิธีการที่จะยุติการเชื่อมต่อบางครั้งอาจมีผลกระทบต่อเครือข่าย
อลัน

46

หมายเหตุ: Apache HTTP ไคลเอนต์ที่มาพร้อมกับ Android จะเลิกตอนนี้ในความโปรดปรานของHttpURLConnection โปรดดูบล็อกนักพัฒนา Android สำหรับรายละเอียดเพิ่มเติม

เพิ่ม<uses-permission android:name="android.permission.INTERNET" />ในรายการของคุณ

จากนั้นคุณจะเรียกคืนหน้าเว็บดังนี้:

URL url = new URL("http://www.android.com/");
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
try {
     InputStream in = new BufferedInputStream(urlConnection.getInputStream());
     readStream(in);
}
finally {
     urlConnection.disconnect();
}

ฉันขอแนะนำให้รันบนเธรดแยกต่างหาก:

class RequestTask extends AsyncTask<String, String, String>{

@Override
protected String doInBackground(String... uri) {
    String responseString = null;
    try {
        URL url = new URL(myurl);
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        if(conn.getResponseCode() == HttpsURLConnection.HTTP_OK){
            // Do normal input or output stream reading
        }
        else {
            response = "FAILED"; // See documentation for more info on response handling
        }
    } catch (ClientProtocolException e) {
        //TODO Handle problems..
    } catch (IOException e) {
        //TODO Handle problems..
    }
    return responseString;
}

@Override
protected void onPostExecute(String result) {
    super.onPostExecute(result);
    //Do anything with response..
}
}

ดูเอกสารประกอบสำหรับข้อมูลเพิ่มเติมเกี่ยวกับการจัดการการตอบสนองและคำขอ POST


1
@Semmix เป็นไงบ้าง? คำถามที่ถามถึงคำขอ "HTTP แบบง่าย" และรหัสของฉันก็เป็นเช่นนั้น
kevinc

1
ฉันเข้าใจว่าบล็อกโค้ดแรกของคุณถูกคัดลอกมาจาก Android เอกสาร แต่ผู้ชายก็เป็นตัวอย่างขยะ / doc readStreamไม่ได้กำหนดไว้
Eugene K

@EugeneK พวกเขาคือ แต่นี่อาจเป็นวิธีที่ง่ายที่สุดในการตอบคำถามนี้ การทำคำขอ HTTP อย่างถูกต้องใน Android จะเกี่ยวข้องกับการอธิบาย Retrofit และ OkHttp ฉันคิดว่ามันจะทำให้ผู้เริ่มต้นสับสนมากกว่าแค่ส่งตัวอย่างข้อมูลที่จะสร้างคำขอ HTTP แบบง่ายๆแม้ว่ามันจะสร้างได้ไม่ดีก็ตาม
kevinc

12

วิธีที่ง่ายที่สุดคือใช้ lib Android ที่ชื่อVolley

วอลเล่ย์นำเสนอสิทธิประโยชน์ดังต่อไปนี้:

ตั้งเวลาอัตโนมัติตามคำขอของเครือข่าย เชื่อมต่อเครือข่ายพร้อมกันหลาย การแคชการตอบสนองดิสก์และหน่วยความจำแบบโปร่งใสพร้อมการเชื่อมโยงแคช HTTP มาตรฐาน สนับสนุนการจัดลำดับความสำคัญของคำขอ API คำขอยกเลิก คุณสามารถยกเลิกการร้องขอเดียวหรือคุณสามารถตั้งค่าบล็อกหรือขอบเขตของการร้องขอที่จะยกเลิก ตัวอย่างเช่นความง่ายในการปรับแต่งเช่นลองใหม่และถอยกลับ การสั่งซื้อที่ดีทำให้ง่ายต่อการเติม UI ของคุณอย่างถูกต้องด้วยการดึงข้อมูลแบบอะซิงโครนัสจากเครือข่าย เครื่องมือดีบั๊กและการติดตาม

คุณสามารถส่งคำขอ http / https แบบง่าย ๆ ดังนี้:

        // Instantiate the RequestQueue.
        RequestQueue queue = Volley.newRequestQueue(this);
        String url ="http://www.yourapi.com";
        JsonObjectRequest request = new JsonObjectRequest(url, null,
            new Response.Listener<JSONObject>() {
                @Override
                public void onResponse(JSONObject response) {
                    if (null != response) {
                         try {
                             //handle your response
                         } catch (JSONException e) {
                             e.printStackTrace();
                         }
                    }
                }
            }, new Response.ErrorListener() {

            @Override
            public void onErrorResponse(VolleyError error) {

            }
        });
        queue.add(request);

ในกรณีนี้คุณไม่จำเป็นต้องพิจารณา "ทำงานในพื้นหลัง" หรือ "ใช้แคช" ด้วยตัวคุณเองเนื่องจาก Volley ได้ทำสิ่งเหล่านี้ทั้งหมดแล้ว


6
private String getToServer(String service) throws IOException {
    HttpGet httpget = new HttpGet(service);
    ResponseHandler<String> responseHandler = new BasicResponseHandler();
    return new DefaultHttpClient().execute(httpget, responseHandler);

}

ความนับถือ


4

ด้วยด้าย:

private class LoadingThread extends Thread {
    Handler handler;

    LoadingThread(Handler h) {
        handler = h;
    }
    @Override
    public void run() {
        Message m = handler.obtainMessage();
        try {
            BufferedReader in = 
                new BufferedReader(new InputStreamReader(url.openStream()));
            String page = "";
            String inLine;

            while ((inLine = in.readLine()) != null) {
                page += inLine;
            }

            in.close();
            Bundle b = new Bundle();
            b.putString("result", page);
            m.setData(b);
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        handler.sendMessage(m);
    }
}

4

ฉันทำสิ่งนี้เพื่อให้บริการเว็บเพื่อขอ URL โดยใช้ Gson lib:

ลูกค้า:

public EstabelecimentoList getListaEstabelecimentoPorPromocao(){

        EstabelecimentoList estabelecimentoList  = new EstabelecimentoList();
        try{
            URL url = new URL("http://" +  Conexao.getSERVIDOR()+ "/cardapio.online/rest/recursos/busca_estabelecimento_promocao_android");
            HttpURLConnection con = (HttpURLConnection) url.openConnection();

            if (con.getResponseCode() != 200) {
                    throw new RuntimeException("HTTP error code : "+ con.getResponseCode());
            }

            BufferedReader br = new BufferedReader(new InputStreamReader((con.getInputStream())));
            estabelecimentoList = new Gson().fromJson(br, EstabelecimentoList.class);
            con.disconnect();

        } catch (IOException e) {
            e.printStackTrace();
        }
        return estabelecimentoList;
}

4

ดูไลบรารี่ใหม่ที่ยอดเยี่ยมซึ่งมีให้เลือกใช้ผ่าน gradle :)

build.gradle: compile 'com.apptakk.http_request:http-request:0.1.2'

การใช้งาน:

new HttpRequestTask(
    new HttpRequest("http://httpbin.org/post", HttpRequest.POST, "{ \"some\": \"data\" }"),
    new HttpRequest.Handler() {
      @Override
      public void response(HttpResponse response) {
        if (response.code == 200) {
          Log.d(this.getClass().toString(), "Request successful!");
        } else {
          Log.e(this.getClass().toString(), "Request unsuccessful: " + response);
        }
      }
    }).execute();

https://github.com/erf/http-request


1
ดูเหมือนห้องสมุดอื่น ๆ ...
นิคแกลลิมอร์

3

ใช้วอลเลย์ตามที่แนะนำข้างต้น เพิ่มสิ่งต่อไปนี้ใน build.gradle (โมดูล: แอป)

implementation 'com.android.volley:volley:1.1.1'

เพิ่มการติดตามลงใน AndroidManifest.xml:

<uses-permission android:name="android.permission.INTERNET" />

และเพิ่มรหัสกิจกรรมต่อไปนี้ให้กับคุณ:

public void httpCall(String url) {

    RequestQueue queue = Volley.newRequestQueue(this);

    StringRequest stringRequest = new StringRequest(Request.Method.GET, url,
            new Response.Listener<String>() {
                @Override
                public void onResponse(String response) {
                    // enjoy your response
                }
            }, new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    // enjoy your error status
                }
    });

    queue.add(stringRequest);
}

มันแทนไคลเอนต์ http และมันง่ายมาก


2

นี่คือรหัสใหม่สำหรับคำขอ HTTP Get / POST ใน Android HTTPClientมีการแจกแจงและอาจไม่สามารถใช้ได้เหมือนในกรณีของฉัน

ประการแรกเพิ่มการพึ่งพาสองอย่างใน build.gradle:

compile 'org.apache.httpcomponents:httpcore:4.4.1'
compile 'org.apache.httpcomponents:httpclient:4.5'

แล้วเขียนโค้ดนี้ในASyncTaskในdoBackgroundวิธีการ

 URL url = new URL("http://localhost:8080/web/get?key=value");
 HttpURLConnection urlConnection = (HttpURLConnection)url.openConnection();
 urlConnection.setRequestMethod("GET");
 int statusCode = urlConnection.getResponseCode();
 if (statusCode ==  200) {
      InputStream it = new BufferedInputStream(urlConnection.getInputStream());
      InputStreamReader read = new InputStreamReader(it);
      BufferedReader buff = new BufferedReader(read);
      StringBuilder dta = new StringBuilder();
      String chunks ;
      while((chunks = buff.readLine()) != null)
      {
         dta.append(chunks);
      }
 }
 else
 {
     //Handle else
 }

รหัสอาจเลิกใช้แล้วและไม่รองรับ apache ใน Android Platform API 28 ในกรณีนี้คุณสามารถเปิดใช้งานคุณสมบัติ apache legacy ใน Manifest หรือไฟล์ Gradle ระดับโมดูล อย่างไรก็ตามขอแนะนำให้ใช้ไลบรารีเครือข่าย OKHttp, Volley หรือ Retrofit
ราหุลเรน

1

สำหรับฉันวิธีที่ง่ายที่สุดคือใช้ไลบรารีชื่อRetrofit2

เราเพียงแค่ต้องสร้างส่วนต่อประสานที่มีวิธีการร้องขอพารามิเตอร์และเราสามารถสร้างส่วนหัวที่กำหนดเองสำหรับแต่ละคำขอ:

    public interface MyService {

      @GET("users/{user}/repos")
      Call<List<Repo>> listRepos(@Path("user") String user);

      @GET("user")
      Call<UserDetails> getUserDetails(@Header("Authorization") String   credentials);

      @POST("users/new")
      Call<User> createUser(@Body User user);

      @FormUrlEncoded
      @POST("user/edit")
      Call<User> updateUser(@Field("first_name") String first, 
                            @Field("last_name") String last);

      @Multipart
      @PUT("user/photo")
      Call<User> updateUser(@Part("photo") RequestBody photo, 
                            @Part("description") RequestBody description);

      @Headers({
        "Accept: application/vnd.github.v3.full+json",
        "User-Agent: Retrofit-Sample-App"
      })
      @GET("users/{username}")
      Call<User> getUser(@Path("username") String username);    

    }

และที่ดีที่สุดคือเราสามารถทำแบบอะซิงโครนัสได้อย่างง่ายดายโดยใช้วิธีการเข้าคิว


1

เนื่องจากไม่มีคำตอบที่อธิบายวิธีดำเนินการกับOkHttpซึ่งเป็นไคลเอนต์ http ที่นิยมมากในปัจจุบันสำหรับ Android และ Java โดยทั่วไปฉันจะให้ตัวอย่างง่ายๆ:

//get an instance of the client
OkHttpClient client = new OkHttpClient();

//add parameters
HttpUrl.Builder urlBuilder = HttpUrl.parse("https://www.example.com").newBuilder();
urlBuilder.addQueryParameter("query", "stack-overflow");


String url = urlBuilder.build().toString();

//build the request
Request request = new Request.Builder().url(url).build();

//execute
Response response = client.newCall(request).execute();

ข้อได้เปรียบที่ชัดเจนของห้องสมุดนี้คือมันทำให้เราเข้าใจในรายละเอียดในระดับต่ำโดยมอบวิธีที่เป็นมิตรและปลอดภัยในการโต้ตอบกับพวกเขา ไวยากรณ์ก็ง่ายขึ้นและอนุญาตให้เขียนโค้ดที่ดี

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.