web-dev-qa-db-ja.com

AndroidでHTTPリクエストをする

どこでも検索しましたが、答えが見つかりませんでした。単純なHTTPリクエストを作成する方法はありますか。自分のWebサイトの1つでPHPページ/スクリプトを要求したいのですが、Webページを表示したくありません。

可能であれば、私はバックグラウンドで(BroadcastReceiverで)それをやりたいです。

337
Mats Hofman

更新

これは非常に古い答えです。私は絶対にもうApacheのクライアントをお勧めしません。代わりに以下のいずれかを使用してください。

元の答え

まず最初に、ネットワークにアクセスする許可を要求して、あなたのマニフェストに以下を追加してください。

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

それなら最も簡単な方法は、AndroidにバンドルされているApache httpクライアントを使うことです。

    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");
464

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

64
Elliott Hughes

注:AndroidにバンドルされているApache HTTPクライアントは、 HttpURLConnection に置き換えられて非推奨になりました。詳細については、Android Developers ブログ を参照してください。

マニフェストに<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リクエストについての詳細は ドキュメント を参照してください。

41
Kevin Cronly

最も簡単な方法は、 Volley という名前の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によって既に行われているからです。

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

}

よろしく

5
Gabriel Gómez

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

4
Ben Marten

スレッドを使って:

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);
    }
}
3
fredley

Gsonのlibを使用して、URLで要求するWebサービス用にこれを作成しました。

クライアント:

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;
}
2

私にとっては、 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);    

    }

そして最良の方法は、enqueueメソッドを使用して非同期に簡単に実行できることです。

1
faruk

これはAndroidのHTTP Get/POSTリクエストのための新しいコードです。 HTTPClientは省略されており、私の場合のように利用できないかもしれません。

まずbuild.gradleに2つの依存関係を追加します。

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
 }
1
Rahul Raina

答えがどれも OkHttp でリクエストを実行する方法を説明していないので、これは今日のAndroidとJavaのために一般的に非常にポピュラーなhttpクライアントです、私は簡単な例を提供するつもりです:

//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();

このライブラリの明らかな利点は、低レベルの詳細から私たちを抽象化し、それらと対話するためのよりフレンドリーで安全な方法を提供することです。構文も単純化され、Niceコードを書くことができます。

0
NiVeR