我正在尝试在 android 上创建这个 JSON 对象。我被困在如何在对象中添加字符串数组。
A = {
"class" : "4" ,
"name" : ["john", "mat", "jason", "matthew"]
}
这是我写的代码:
import org.json.JSONObject;
JSONObject school = new JSONObject();
school.put("class","4");
school.put("name", ["john", "mat", "jason", "matthew"] );
但是最后一行给出了一个错误。有办法过去吗?