// 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);
ここで、arrayOfElementsは文字列の配列である必要があります。どのようにできるのか?
/ **編集
必要なものの例
{
"action": "myAction",
"type": "elementi",
"elementi": [
"3287498357",
"23472857"
]
}
例を見た後、私はあなたが Java JsonObject配列値からキーへ で尋ねられたのと同様のことをしようとしていることを理解しました
jsonObjSend.put("elementi", new JSONArray(new Object[] { "value1", "value2", "value3"} ));
単純化するには:
JSONArray arr = new JSONArray();
arr.put("value1");
arr.put("value2");
//...
jsonObjSend.put("elementi", arr);
JSONObject jsonBody = new JSONObject();
jsonBody.put("action", "myAction"); //action is your string
jsonBody.put("type", "elementi");
JSONArray arr = new JSONArray();
JSONObject elementi= new JSONObject();
itemList.put("id", id);
itemList.put("name", name);
arr.put(elementi);
jsonBody.put("elementi", arr);