Look into HttpClient and related classes

Here is very simple code to get a web page
        HttpClient client = new DefaultHttpClient();
        HttpGet getMethod = new HttpGet
(strURL);
        HttpResponse response = client.execute(getMethod);
        String res = EntityUtils.toString(response.getEntity());


On Nov 29, 12:30 pm, "Juan David Trujillo C."
<[EMAIL PROTECTED]> wrote:
> Hi guys!
>
> I am creating a software application for the Android platform that
> requires getting information from the Internet (getting information
> from a specific Web page, at Facebook).  Does anyone know how could
> this be done?  Perhaps some reference code?
>
> Thanks in advance for all your help!
>
> Juan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to