对象数组未按预期运行
Posted
技术标签:
【中文标题】对象数组未按预期运行【英文标题】:array of objects not functioning as expected 【发布时间】:2021-07-11 02:12:28 【问题描述】:我想创建一个具有以下格式的 json, 如何将多个对象添加到单个数组中。
Data: [
"dataType":"com.google.weight",
"startDate":"2021-04-1308:00",
"endDate":"2021-04-13",
"Weight":"65",
"dataType":"com.google.weight",
"startDate":"2021-04-1308:00",
"endDate":"2021-04-13",
"Weight":"85",
"dataType":"com.google.weight",
"startDate":"2021-04-1308:00",
"endDate":"2021-04-13",
"Weight":"95"
]
代码:
JSONObject jsonObject = new JSONObject();
JSONObject json = new JSONObject();
jsonObject.put("dataType", dataSet.getDataType().getName().toString());
jsonObject.put("startDate", dateFormat.format(dp.getStartTime().toString());
jsonObject.put("endDate", dateFormat.format(dp.getEndTime().toString());
jsonObject.put("Weight", dp.getValue(field).toString());
json.put("Data", jsonObject) //this is wrong i guess. it replaces all the old values
使用上面的代码,我得到以下结果。这是替换所有其他值并仅打印一个对象。我想要一个对象数组。任何帮助都会很棒!!!
Data:
"dataType":"com.google.weight",
"startDate":"2021-04-1308:00",
"endDate":"2021-04-13",
"Weight":"95"
【问题讨论】:
【参考方案1】:您正在将一个对象添加到另一个对象中。这就是你得到它的原因。你错过了数组
JSONObject jsonObject = new JSONObject();
JSONObject json = new JSONObject();
jsonObject.put("dataType", dataSet.getDataType().getName().toString());
jsonObject.put("startDate", dateFormat.format(dp.getStartTime().toString());
jsonObject.put("endDate", dateFormat.format(dp.getEndTime().toString());
jsonObject.put("Weight", dp.getValue(field).toString());
// you missed this
JSONArray jsonArray = new JSONArray();
jsonArray.put(jsonObject);
// now you put an array into an object
json.put("Data", jsonArray)
【讨论】:
【参考方案2】:你必须有一个数组 var,然后将每个 json 对象添加到数组中
【讨论】:
【参考方案3】:我来宾您需要一个 JSONArray 作为数据。 所以
jsonArray.add(jsonObject);
json.put("数据", jsonArray);
类似的东西。我没有测试代码。不知道是不是叫JSONArray,方法名是不是add。但是你肯定需要一个 JSONArray 来保存 jsonObject。
【讨论】:
以上是关于对象数组未按预期运行的主要内容,如果未能解决你的问题,请参考以下文章
for(i=0;i<number;i++) 循环行为未按预期工作?