Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I m new to android developement. In my application i need to read Data from google maps api direction webservice.

http://maps.googleapis.com/maps/api/directions/xml?origin=Toronto&destination=Montreal&sensor=false

I want to call this webservice. And reading data from this link. Plz any one help me in this issue.

share|improve this question
1  
what have you tried? – Mitch Wheat Aug 29 '12 at 10:25

closed as not a real question by Mitch Wheat, edorian, mikemackintosh, Dervall, Mathieu Imbert Aug 29 '12 at 20:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 4 down vote accepted

You can call url with HttpConnection

public String getValuefromUrl(String url)
    {
        try
        {
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpGet httpGet = new HttpGet(url);
            ResponseHandler<String> resHandler = new BasicResponseHandler();
            String page = httpClient.execute(httpGet, resHandler);
            Log.v("PAGE",page);
            return page;
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
            return "zero";  

        }
    }
share|improve this answer
Thanks its working great – KAREEM MAHAMMED Aug 29 '12 at 10:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.