我有这堂课:
class Type{
public int id;
public String name;
}
我想以这种方式在 JSON 中格式化对象
{[1,"superMarket"],[2,"restaurant "]}
并将数据从 JSON 放入“类型”对象
有人能帮助我吗......
我有这堂课:
class Type{
public int id;
public String name;
}
我想以这种方式在 JSON 中格式化对象
{[1,"superMarket"],[2,"restaurant "]}
并将数据从 JSON 放入“类型”对象
有人能帮助我吗......
Type to JSON
JSONObject jsonObj = new JSONObject();
jsonObj.putString("id", id);
jsonObj.putString("name", name);
You can add as many jsonObj
s to JSONArray.
JSON to Type
Type type = new Type();
type.setId(jsonObj.optString("id"));
type.setName(jsonObj.optString("name"));
你需要使用 jasonArray 而你 jsonObject ro 这样做..你可以查看这个答案