我想将一个对象添加到数组中。如果other_amount
的数据大于零,我想更多地添加一个对象。如果它等于零,它应该什么都不添加。这是我的代码:
JSONArray acc_data = new JSONArray();
Map<String, Object> myaccount = new LinkedHashMap<>();
for (int i = 0; i < mpay.size(); i++) {
if(other_amount>0){
myaccount.put("poAccount", other_account);
myaccount.put("poAmount", other_amount);
system.out.println(myaccount);
//{poAccount=050017, poAmount=12}
}
myaccount.put("poAccount", amount_account);
myaccount.put("poAmount", amount);
system.out.println(myaccount);
//{"poAccount":"050016","poAmount":"800"}
acc_data.add(myaccount);
system.out.println(acc_data);
//[{"poAccount":"050016","poAmount":"800"}]
}
但我需要这样:
//[{"poAccount":"050016","poAmount":"800"},{poAccount=050017, poAmount=12}]
请帮我解决。
答案 0 :(得分:0)
您不应该为您的案例使用地图。 当您将该对与现有的地图密钥放在一起时,该对将被覆盖。 例如
map.put ("k1","v1");
地图包含一对&#34; k1&#34;:&#34; v1&#34; 下一个电话
map.put ("k1","newV1");
第一对将被覆盖,地图仍包含1对:&#34; k1&#34;:&#34; newV1&#34;
对于您的情况,最好定义包含2个字段poAccount
和poAmount
的简单POJO类。并将它们添加到JSONArray
答案 1 :(得分:0)
您遵循的方法,它不符合您的要求。您应该使用pojo存储记录,然后填充Json数组。您可以查看此代码并根据您的要求进行修改。
public class Test {
public static void main(String[] args) {
Mypojo mypojo = new Mypojo();
Gson gson = new Gson();
JSONArray records = new JSONArray();
for (int i = 0; i < 1; i++) {
if (5 > 0) {
mypojo.setPoAccount("050017");
mypojo.setPoAmount("12");
JSONObject objects = new JSONObject(gson.toJson(mypojo));
records.put(objects);
}
mypojo.setPoAccount("050016");
mypojo.setPoAmount("800");
JSONObject objects = new JSONObject(gson.toJson(mypojo));
records.put(objects);
}
System.out.println(records);
}
}
Mypojo课程:
public class Mypojo
{
private String poAmount;
private String poAccount;
public String getPoAmount ()
{
return poAmount;
}
public void setPoAmount (String poAmount)
{
this.poAmount = poAmount;
}
public String getPoAccount ()
{
return poAccount;
}
public void setPoAccount (String poAccount)
{
this.poAccount = poAccount;
}
@Override
public String toString()
{
return "ClassPojo [poAmount = "+poAmount+", poAccount = "+poAccount+"]";
}
}