// JSON object to hold the information, which is sent to the server
JSONObject jsonObjSend = new JSONObject();
jsonObjSend.put("action", "myAction");
jsonObjSend.put("type", tipo);
现在一切正常,但如果我想添加
jsonObjSend.put("elementi", arrayOfElements);
其中 arrayOf Elements 必须是字符串数组。我能怎么做?
/ **编辑
我需要的示例
{
"action": "myAction",
"type": "elementi",
"elementi": [
"3287498357",
"23472857"
]
}