Android提供了多种方法来解析JSON数据,以下是常见的两种方法:
使用JSONObject和JSONArray类:
String jsonString = "{'name':'John', 'age':30, 'city':'New York'}";
JSONObject jsonObject = new JSONObject(jsonString);
String name = jsonObject.getString("name");
int age = jsonObject.getInt("age");
String city = jsonObject.getString("city");
String jsonString = "{'students': [{'name':'John', 'age':20}, {'name':'Kate', 'age':22}]}";
JSONObject jsonObject = new JSONObject(jsonString);
JSONArray studentsArray = jsonObject.getJSONArray("students");
for (int i = 0; i < studentsArray.length(); i++) {
JSONObject studentObject = studentsArray.getJSONObject(i);
String name = studentObject.getString("name");
int age = studentObject.getInt("age");
// 处理每个学生的数据
}
使用Gson库:
implementation 'com.google.code.gson:gson:2.8.6'
String jsonString = "{'name':'John', 'age':30, 'city':'New York'}";
Gson gson = new Gson();
MyClass obj = gson.fromJson(jsonString, MyClass.class);
public class MyClass {
private String name;
private int age;
private String city;
// 省略构造方法和getter/setter方法
}
以上是两种常见的JSON解析方法,根据实际情况选择适合的方法进行解析。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: android端口转发怎么配置