tags:

views:

2626

answers:

2

How we can send the Url Using Http Get Method in Android Android ..I tried but it doesn't works.can u give me the code to send url via http get method..

A: 

http://hc.apache.org/httpcomponents-client/examples.html

The first example ("Response handling") may fit your needs.

CommonsWare
+2  A: 

If I understand the question correctly, you are trying to download a URL in Android.

Using the standard java http url classes should work for you:

final InputStream is = new URL("http://www.google.com/").openStream();

If you like, you can then wrap the stream in a BufferedInputStream and DataInputStream to make reading the contents easier.

If you would like more flexibility, you can definitely use httpclient 4.0, which is included in the Android distribution. There are several examples of how to do this.

Mike