अपडेट करें
यह बहुत पुराना उत्तर है। मैं निश्चित रूप से अपाचे के ग्राहक की सिफारिश नहीं करूंगा। इसके बजाय या तो उपयोग करें:
मूल उत्तर
सबसे पहले, नेटवर्क का उपयोग करने की अनुमति का अनुरोध करें, अपने घोषणापत्र में निम्नलिखित जोड़ें:
<uses-permission android:name="android.permission.INTERNET" />
फिर सबसे आसान तरीका है अपाचे 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");