-1

嗨,我是 android 开发的新手。在我的应用程序中,我需要从谷歌地图 api 方向网络服务中读取数据。

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

我想调用这个网络服务。并从此链接读取数据。请任何人帮助我解决这个问题。

4

1 回答 1

5

您可以使用 url 调用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";  

        }
    }
于 2012-08-29T10:25:41.737 回答