我有這樣的代碼JSON對象只保留最後一個記錄
JSONObject output = new JSONObject();
JSONObject elements = new JSONObject();
JSONArray jsonArrayOutput = new JSONArray();
ArrayList<String> name = ArrayList<String>();
for (int i=0 ; i<name.size() ; i++){
elements.put("Name", name.get(i));
jsonArrrayOutput.put(elements);
}
output.put("Results", jsonArrrayOutput).toString();
的問題是,所得到的輸出JSON有隻「名」的ArrayList很多次,不是所有元素的最後一個元素。 我該如何解決它?
非常感謝。這是解決方案。 –
@ A.Sim接受答案.. – TKHN