我如何调用此链接http://overpass-api.de/api/interpreter?data=[out:json];node(1422314245);out;并得到答案?我知道这很简单,但在Java(android)中是新手。
答案 0 :(得分:1)
您似乎希望向提供的网址发送简单的http get请求。 发送简单的GET请求:
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet("http://www.example.com");
HttpResponse response;
try {
response = client.execute(request);
Log.d("Response of GET request", response.toString());
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
然后,根据您的响应格式,您要解析它。 另外,请不要忘记在manifest.xml文件中包含必要的权限,例如使用Internet的权限。
答案 1 :(得分:0)