ฉันค้นหาทุกที่ แต่ไม่สามารถหาคำตอบได้มีวิธีในการสร้างคำขอ HTTP อย่างง่ายหรือไม่? ฉันต้องการขอหน้า PHP / สคริปต์ในเว็บไซต์ของฉัน แต่ฉันไม่ต้องการแสดงหน้าเว็บ
ถ้าเป็นไปได้ฉันยังต้องการทำมันในพื้นหลัง (ใน BroadcastReceiver)
ฉันค้นหาทุกที่ แต่ไม่สามารถหาคำตอบได้มีวิธีในการสร้างคำขอ HTTP อย่างง่ายหรือไม่? ฉันต้องการขอหน้า PHP / สคริปต์ในเว็บไซต์ของฉัน แต่ฉันไม่ต้องการแสดงหน้าเว็บ
ถ้าเป็นไปได้ฉันยังต้องการทำมันในพื้นหลัง (ใน BroadcastReceiver)
คำตอบ:
นี่เป็นคำตอบที่เก่ามาก ฉันจะไม่แนะนำลูกค้าของ 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");
ยกเว้นว่าคุณมีเหตุผลที่ชัดเจนในการเลือก 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
หมายเหตุ: 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
readStream
ไม่ได้กำหนดไว้
วิธีที่ง่ายที่สุดคือใช้ 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 ได้ทำสิ่งเหล่านี้ทั้งหมดแล้ว
private String getToServer(String service) throws IOException {
HttpGet httpget = new HttpGet(service);
ResponseHandler<String> responseHandler = new BasicResponseHandler();
return new DefaultHttpClient().execute(httpget, responseHandler);
}
ความนับถือ
ด้วยด้าย:
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);
}
}
ฉันทำสิ่งนี้เพื่อให้บริการเว็บเพื่อขอ 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;
}
ดูไลบรารี่ใหม่ที่ยอดเยี่ยมซึ่งมีให้เลือกใช้ผ่าน 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();
ใช้วอลเลย์ตามที่แนะนำข้างต้น เพิ่มสิ่งต่อไปนี้ใน 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 และมันง่ายมาก
นี่คือรหัสใหม่สำหรับคำขอ 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
}
สำหรับฉันวิธีที่ง่ายที่สุดคือใช้ไลบรารีชื่อ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);
}
และที่ดีที่สุดคือเราสามารถทำแบบอะซิงโครนัสได้อย่างง่ายดายโดยใช้วิธีการเข้าคิว
เนื่องจากไม่มีคำตอบที่อธิบายวิธีดำเนินการกับ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();
ข้อได้เปรียบที่ชัดเจนของห้องสมุดนี้คือมันทำให้เราเข้าใจในรายละเอียดในระดับต่ำโดยมอบวิธีที่เป็นมิตรและปลอดภัยในการโต้ตอบกับพวกเขา ไวยากรณ์ก็ง่ายขึ้นและอนุญาตให้เขียนโค้ดที่ดี