如何在android中从服务器上检索json以下的数据?你能给我举个例子吗?如何从下面的url获取userrole?
http://beta.json-generator.com/api/json/get/4y2NmxAYf
最佳答案
您将得到json数组的响应。您可以从数组中获取以下详细信息:
try {
JSONArray jsonArray = new JSONArray(response);
for (int i=0; i<jsonArray.length();i++) {
JSONObject jsonObject = jsonArray.getJSONObject(i);
String userRole = jsonObject.getString("UserRole");
//Rest of the code....
}
} catch (Exception e) {
e.printStackTrace();
}
关于android - 如何从Android中的服务器检索以下json数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42572103/