我正试图产生一种适当的JSON输出,供公司使用。 我被迫使用JAVAjson-simple lib,我尝试了我可以想象的每一种组合。
请允许我指出,我喜欢 drop倒,以列出“Alex1”、“Alex2”、“Alex3”等。
I have tried the following
JSONObject obj =new JSONObject();
List strs = new ArrayList();
strs.add("Alex1");
strs.add("Alex2");
strs.add("Alex3");
strs.add("Alex4");
obj.put("source", strs);
return(obj.toJSONString());
我也曾尝试过。
JSONObject obj =new JSONObject();
Map map = new LinkedHashMap();
map.put("id1", "Alex1");
map.put("id2", "Alex2");
map.put("id3", "Alex3");
map.put("id4", "Alex4");
obj.put("source", map);
return(obj.toJSONString());
但无uck
我试图以适当的格式亲手作的尝试,我的模块非常完美地运作,因此我知道问题在于初等干事的产出。
某个人告诉我,我如何适当利用json-simple lib?
增 编