web-dev-qa-db-ja.com

AndroidのHttpClientの代替オプションが必要です。これは、サポートされなくなったため、PHPにデータを送信します

現在、HttpClientHttpPostを使用してPHP serverからAndroid appにデータを送信していますが、これらのメソッドはすべてAPI 22で廃止され、API 23で削除されました。代替オプションはありますか?

どこでも検索しましたが、何も見つかりませんでした。

27
priyank

HttpClient のドキュメントは正しい方向を示しています。

_org.Apache.http.client.HttpClient_:

このインターフェイスはAPIレベル22で廃止されました。代わりにopenConnection()を使用してください。詳細については、このWebページをご覧ください。

Java.net.URL.openConnection()に切り替える必要があることを意味します。

方法は次のとおりです。

_URL url = new URL("http://some-server");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");

// read the response
System.out.println("Response Code: " + conn.getResponseCode());
InputStream in = new BufferedInputStream(conn.getInputStream());
String response = org.Apache.commons.io.IOUtils.toString(in, "UTF-8");
System.out.println(response);
_

IOUtilsドキュメント: Apache Commons IO
IOUtils Maven依存関係: http://search.maven.org/#artifactdetails|org.Apache.commons|commons-io|1.3.2|jar

28
fateddy

また、自分でクラスを作成したことを解決するためにこの問題に遭遇しました。これはJava.netに基づいており、AndroidのAPI 24までをサポートしています: HttpRequest.Java

このクラスを使用すると、次のことが簡単にできます。

  1. Http GETリクエストを送信
  2. Http POSTリクエストを送信
  3. Http PUTリクエストを送信
  4. Httpを送信DELETE
  5. 追加のデータパラメータなしでリクエストを送信し、レスポンスを確認しますHTTP status code
  6. カスタムHTTP Headersをリクエストに追加します(可変引数を使用)
  7. データパラメータをStringクエリとしてリクエストに追加します
  8. データパラメータをHashMap {key = value}として追加します
  9. Stringとして応答を受け入れます
  10. JSONObjectとして応答を受け入れます
  11. byte []バイト配列として応答を受け入れます(ファイルに便利)

およびそれらの任意の組み合わせ-1行のコードだけで)

以下に例を示します。

//Consider next request: 
HttpRequest req=new HttpRequest("http://Host:port/path");

例1

//prepare Http Post request and send to "http://Host:port/path" with data params name=Bubu and age=29, return true - if worked
req.prepare(HttpRequest.Method.POST).withData("name=Bubu&age=29").send();

例2

// prepare http get request,  send to "http://Host:port/path" and read server's response as String 
req.prepare().sendAndReadString();

例3

// prepare Http Post request and send to "http://Host:port/path" with data params name=Bubu and age=29 and read server's response as JSONObject 
HashMap<String, String>params=new HashMap<>();
params.put("name", "Groot"); 
params.put("age", "29");
req.prepare(HttpRequest.Method.POST).withData(params).sendAndReadJSON();

例4

//send Http Post request to "http://url.com/b.c" in background  using AsyncTask
new AsyncTask<Void, Void, String>(){
        protected String doInBackground(Void[] params) {
            String response="";
            try {
                response=new HttpRequest("http://url.com/b.c").prepare(HttpRequest.Method.POST).sendAndReadString();
            } catch (Exception e) {
                response=e.getMessage();
            }
            return response;
        }
        protected void onPostExecute(String result) {
            //do something with response
        }
    }.execute(); 

例5

//Send Http PUT request to: "http://some.url" with request header:
String json="{\"name\":\"Deadpool\",\"age\":40}";//JSON that we need to send
String url="http://some.url";//URL address where we need to send it 
HttpRequest req=new HttpRequest(url);//HttpRequest to url: "http://some.url"
req.withHeaders("Content-Type: application/json");//add request header: "Content-Type: application/json"
req.prepare(HttpRequest.Method.PUT);//Set HttpRequest method as PUT
req.withData(json);//Add json data to request body
JSONObject res=req.sendAndReadJSON();//Accept response as JSONObject

例6

//Equivalent to previous example, but in a shorter way (using methods chaining):
String json="{\"name\":\"Deadpool\",\"age\":40}";//JSON that we need to send
String url="http://some.url";//URL address where we need to send it 
//Shortcut for example 5 complex request sending & reading response in one (chained) line
JSONObject res=new HttpRequest(url).withHeaders("Content-Type: application/json").prepare(HttpRequest.Method.PUT).withData(json).sendAndReadJSON();

例7

//Downloading file
byte [] file = new HttpRequest("http://some.file.url").prepare().sendAndReadBytes();
FileOutputStream fos = new FileOutputStream("smile.png");
fos.write(file);
fos.close();
41
Nikita Kurtin

次のコードはAsyncTaskにあります。

私のバックグラウンドプロセスで:

String POST_PARAMS = "param1=" + params[0] + "&param2=" + params[1];
URL obj = null;
HttpURLConnection con = null;
try {
    obj = new URL(Config.YOUR_SERVER_URL);
    con = (HttpURLConnection) obj.openConnection();
    con.setRequestMethod("POST");

    // For POST only - BEGIN
    con.setDoOutput(true);
    OutputStream os = con.getOutputStream();
    os.write(POST_PARAMS.getBytes()); 
    os.flush();
    os.close();
    // For POST only - END

    int responseCode = con.getResponseCode();
    Log.i(TAG, "POST Response Code :: " + responseCode);

    if (responseCode == HttpURLConnection.HTTP_OK) { //success
         BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
         String inputLine;
         StringBuffer response = new StringBuffer();

         while ((inputLine = in.readLine()) != null) {
              response.append(inputLine);
         }
         in.close();

         // print result
            Log.i(TAG, response.toString());
            } else {
            Log.i(TAG, "POST request did not work.");
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

リファレンス: http://www.journaldev.com/7148/Java-httpurlconnection-example-to-send-http-getpost-requests

7
Sandy D.

これは、httpclientがこのバージョンのAndroid 22`で非推奨となった問題に適用したソリューションです。

 public static final String USER_AGENT = "Mozilla/5.0";



public static String sendPost(String _url,Map<String,String> parameter)  {
    StringBuilder params=new StringBuilder("");
    String result="";
    try {
    for(String s:parameter.keySet()){
        params.append("&"+s+"=");

            params.append(URLEncoder.encode(parameter.get(s),"UTF-8"));
    }


    String url =_url;
    URL obj = new URL(_url);
    HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

    con.setRequestMethod("POST");
    con.setRequestProperty("User-Agent", USER_AGENT);
    con.setRequestProperty("Accept-Language", "UTF-8");

    con.setDoOutput(true);
    OutputStreamWriter outputStreamWriter = new OutputStreamWriter(con.getOutputStream());
    outputStreamWriter.write(params.toString());
    outputStreamWriter.flush();

    int responseCode = con.getResponseCode();
    System.out.println("\nSending 'POST' request to URL : " + url);
    System.out.println("Post parameters : " + params);
    System.out.println("Response Code : " + responseCode);

    BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
    String inputLine;
    StringBuffer response = new StringBuffer();

    while ((inputLine = in.readLine()) != null) {
        response.append(inputLine + "\n");
    }
    in.close();

        result = response.toString();
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (ProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }catch (Exception e) {
        e.printStackTrace();
    }finally {
    return  result;
    }

}
3
Frutos Marquez

HttpClientの使用は自由です。 Googleは、Apacheのコンポーネントの独自バージョンのみを廃止しました。この投稿で説明したように、ApacheのHttpClientの新しくて強力で非推奨のバージョンをインストールできます。 https://stackoverflow.com/a/37623038/1727132

2
Jehy

どのクライアントが最適ですか?

Apache HTTPクライアントでは、EclairとFroyoのバグが少なくなっています。これらのリリースに最適です。

Gingerbread以上の場合、HttpURLConnectionが最適です。そのシンプルなAPIと小さなサイズは、Androidに最適です...

リファレンス こちら 詳細情報(Android開発者のブログ)

1
Hugo

私の使いやすいカスタムクラスを使用できます。抽象クラス(匿名)のオブジェクトを作成し、onsuccess()およびonfail()メソッドを定義するだけです。 https://github.com/creativo123/POSTConnection

1
Keval Choudhary

aPI 22以前を対象とする場合は、build.gradleに次の行を追加する必要があります

dependencies {
    compile group: 'org.Apache.httpcomponents' , name: 'httpclient-Android' , version: '4.3.5.1'
}

aPI 23以降を対象とする場合、build.gradleに次の行を追加する必要があります

dependencies {
    compile group: 'cz.msebera.Android' , name: 'httpclient', version: '4.4.1.1'
}

それでもhttpclientライブラリを使用する場合は、Android Marshmallow(sdk 23)で、以下を追加できます。

useLibrary 'org.Apache.http.legacy'

回避策としてAndroid {}セクションでbuild.gradleを使用します。これは、Google独自のgmsライブラリの一部に必要なようです!

1
Hasan Jamshaid