ACTUALIZACIÓN
Ésta es una respuesta muy antigua. Definitivamente ya no recomendaré el cliente de Apache. Considere usar HttpUrlConnection o OkHttp en su lugar.
ACTUALIZACIÓN
En primer lugar, solicitar una autorización de acceso a la red, añadir siguiente a su manifiesta:
<uses-permission android:name="android.permission.INTERNET" />
A continuación, la forma más fácil es usar cliente HTTP Apache incluido con 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());
}
Si desea que se ejecute el hilo separado le recomiendo que se extiende 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..
}
}
A continuación, puede hacer una solicitud por:
new RequestTask().execute("http://stackoverflow.com");
Relacionados: [Descargar un recurso y mostrar un diálogo de progreso] (http://stackoverflow.com/questions/3028306/download-a-file-with-android-and-showing-the-progress-in-a -progressdialog/3028660 # 3028660) – rds