Android获取网站调用的json响应

时间:2017-02-22 09:16:59

标签: android wrapping

有一些网站调用终点并重温json响应。 我想知道如何在myAndroid应用程序中调用该网站并检索他显示的json数据。 示例:这是一个驱动站点地图

drivenow map link

如果我打开浏览器的调试模式,我会看到这个给出josn响应的ajax调用。 我想知道我可以调用这个网站并在我的Android应用程序中获取(grap)这个响应,所以我可以使用json 任何的想法?救命? 感谢

1 个答案:

答案 0 :(得分:0)

您可以使用两种方式执行GET / POST请求。

某些第三方网络请求库

我建议使用robospice。使用robospice执行网络请求并为其提供POJO。有关POJO的更多信息,请参阅以下链接

https://github.com/stephanenicolas/robospice/wiki/Starter-Guide

What is RoboSpice Library in android

使用原生Android / Java代码

使用此功能从URL获取JSON。

public static JSONObject getJSONObjectFromURL(String urlString) throws IOException, JSONException {

HttpURLConnection urlConnection = null;

URL url = new URL(urlString);

urlConnection = (HttpURLConnection) url.openConnection();

urlConnection.setRequestMethod("GET");
urlConnection.setReadTimeout(10000 /* milliseconds */);
urlConnection.setConnectTimeout(15000 /* milliseconds */);

urlConnection.setDoOutput(true);

urlConnection.connect();

BufferedReader br=new BufferedReader(new InputStreamReader(url.openStream()));

char[] buffer = new char[1024];

String jsonString = new String();

StringBuilder sb = new StringBuilder();
String line;
while ((line = br.readLine()) != null) {
    sb.append(line+"\n");
}
br.close();

jsonString = sb.toString();

System.out.println("JSON: " + jsonString);

return new JSONObject(jsonString);}

然后像这样使用它:

try{
  JSONObject jsonObject = getJSONObjectFromURL(String urlString);

  // Parse your json here

} catch (IOException e) {
  e.printStackTrace();
} catch (JSONException e) {
  e.printStackTrace();
}

不要忘记在清单中添加Internet权限

<uses-permission android:name="android.permission.INTERNET" />

有关解析JSON访问的更多信息 How to parse JSON in Android

注意

如果您使用第三方库,则不必手动解析您的json。