現在、HttpClient
、HttpPost
を使用してPHP server
からAndroid app
にデータを送信していますが、これらのメソッドはすべてAPI 22で廃止され、API 23で削除されました。代替オプションはありますか?
どこでも検索しましたが、何も見つかりませんでした。
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 IOIOUtils
Maven依存関係: http://search.maven.org/#artifactdetails|org.Apache.commons|commons-io|1.3.2|jar
また、自分でクラスを作成したことを解決するためにこの問題に遭遇しました。これはJava.netに基づいており、AndroidのAPI 24までをサポートしています: HttpRequest.Java
このクラスを使用すると、次のことが簡単にできます。
GET
リクエストを送信POST
リクエストを送信PUT
リクエストを送信DELETE
HTTP status code
HTTP Headers
をリクエストに追加します(可変引数を使用)String
クエリとしてリクエストに追加しますHashMap
{key = value}として追加しますString
として応答を受け入れますJSONObject
として応答を受け入れます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();
次のコードはAsyncTaskにあります。
私のバックグラウンドプロセスで:
String POST_PARAMS = "param1=" + params[0] + "¶m2=" + 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
これは、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;
}
}
HttpClientの使用は自由です。 Googleは、Apacheのコンポーネントの独自バージョンのみを廃止しました。この投稿で説明したように、ApacheのHttpClientの新しくて強力で非推奨のバージョンをインストールできます。 https://stackoverflow.com/a/37623038/1727132
どのクライアントが最適ですか?
Apache HTTPクライアントでは、EclairとFroyoのバグが少なくなっています。これらのリリースに最適です。
Gingerbread以上の場合、HttpURLConnectionが最適です。そのシンプルなAPIと小さなサイズは、Androidに最適です...
リファレンス こちら 詳細情報(Android開発者のブログ)
私の使いやすいカスタムクラスを使用できます。抽象クラス(匿名)のオブジェクトを作成し、onsuccess()およびonfail()メソッドを定義するだけです。 https://github.com/creativo123/POSTConnection
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ライブラリの一部に必要なようです!