私JsonArrayは、次のようになります。私が使用する必要がAPIのみJsArrayを受け入れ以来:JSONArrayをJsArrayに変換するには?
JSONArray itemsJsonArray = new JSONArray();
JSONObject jsobj = new JSONObject();
jsobj.put("a", new JSONString("hi"));
jsobj.put("b", new JSONString("hgjjh"));
jsobj.put("c", new JSONNumber(149077));
itemsJsonArray.set(0, jsobj);
は私がJsArray(com.google.gwt.core.clientパッケージ)と同等のデータを必要とします。
私は特定のJsArrayに変換する必要があり、JsonObjectは使用できません。データのシリアル化のオーバーヘッドをとることはできません。
上記のデータに相当するJsArrayの構造は、key:valueとして構造化されます。
[JSON配列をJavascript配列に変換する]の複製が可能です(https://stackoverflow.com/questions/9581623/json-array-convert-to-javascript-array) –
このようなものhttps://stackoverflow.com/questions/5618548/convert-json-array-to-javascript-array –