List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Map<String, Object> map = new HashMap<String, Object>();
map.put("abc", "123456");
map.put("def", "hmm");
list.add(map);
JSONObject json = new JSONObject(list);
try {
System.err.println(json.toString(2));
} catch (JSONException e) {
e.printStackTrace();
}
このコードの何が問題になっていますか?
出力は次のとおりです。
{"empty": false}
public String listmap_to_json_string(List<Map<String, Object>> list)
{
JSONArray json_arr=new JSONArray();
for (Map<String, Object> map : list) {
JSONObject json_obj=new JSONObject();
for (Map.Entry<String, Object> entry : map.entrySet()) {
String key = entry.getKey();
Object value = entry.getValue();
try {
json_obj.put(key,value);
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
json_arr.put(json_obj);
}
return json_arr.toString();
}
大丈夫、これを試してください〜これは私のために働いた:D
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Map<String, Object> map = new HashMap<String, Object>();
map.put("abc", "123456");
map.put("def", "hmm");
list.add(map);
// it's wrong JSONObject json = new JSONObject(list);
// if u use list to add data u must be use JSONArray
JSONArray json = JSONArray.fromObject(list);
try {
System.err.println(json.toString(2));
} catch (JSONException e) {
e.printStackTrace();
}
最終的には、JSONObjects(マップ)のJSONArray(リストに対応)になる必要があります。
JSONObjectの代わりにJSONArrayとしてjson変数を宣言してみてください(JSONArrayコンストラクターは正しいことをすると私は信じています)。
org.json.simple.JSONArrayを使用している場合
( https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple/1.1.1 )
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
Map<String, Object> map = new HashMap<String, Object>();
map.put("abc", "123456");
map.put("def", "hmm");
list.add(map);
JSONArray jsonArray = new JSONArray();
jsonArray.addAll(listOfMaps);
これは私のために働きました:
List<JSONObject> jsonCategories = new ArrayList<JSONObject>();
JSONObject jsonCategory = null;
for (ICategory category : categories) {
jsonCategory = new JSONObject();
jsonCategory.put("categoryID", category.getCategoryID());
jsonCategory.put("desc", category.getDesc());
jsonCategories.add(jsonCategory);
}
try {
PrintWriter out = response.getWriter();
response.setContentType("text/xml");
response.setHeader("Cache-Control", "no-cache");
_log.info(jsonCategories.toString());
out.write(jsonCategories.toString());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
また、json.orgのリストにある他のパーサーのいずれかを使用することを検討できます。それらのほとんどは、Jsonの「オブジェクト」と「配列」がJava.util.MapsとJava.util.Listsにネイティブにマッピングできるようにします。またはいくつかのケースでは実際のJavaオブジェクトも。
私の推奨は、Jacksonです http://jackson.codehaus.org/Tutorial これにより、List/Map/Integer/String/Boolean/nullだけでなく、実際のBeans/POJOへのマッピングが可能になります。タイプを指定し、データをマップするか、JavaオブジェクトをJsonとして書き込みます。berliosの "json-tools"やgoogle-gsonなどの他の機能も同様の機能を公開します。
リスト内にマップがネストされています。最初にリストを反復処理せずにマップを呼び出そうとしています。 JSONは魔法のように感じることがありますが、実際にはそうではありません。すぐにコードを投稿します。
マップのリストではなくマップのマップを作成するほうがJSONとの整合性が高くなります。
JSONObject json = new JSONObject(list);
Iterator<?> it = json.keys();
while (keyed.hasNext()) {
String x = (String) it.next();
JSONObject jo2 = new JSONObject(jo.optString(x));
}
あなたは両方を使用してそれを行うことができます:
JSONArray
直接、
String toJson(Collection<Map<String, Object>> list)
{
return new JSONArray(list).toString();
}
または、Java8でリストを反復することによって(@ShadowJohnソリューションのように):
String toJson(Collection<Map<String, Object>> list)
{
return new JSONArray(
list.stream()
.map((map) -> new JSONObject(map))
.collect(Collectors.toList()))
.toString();
}