我正在尝试将自定义类的 ArrayList 转换为 JsonArray。下面是我的代码。它执行得很好,但是一些 JsonArray 元素作为 0 出现,即使它们是 ArrayList 中的数字。我试图将它们打印出来。就像 ArrayList 中的 customerOne 年龄是 35 但在 JsonArray 中是 0。有什么问题?
ArrayList<Customer> customerList = CustomerDB.selectAll();
Gson gson = new Gson();
JsonElement element =
gson.toJsonTree(customerList , new TypeToken<List<Customer>>() {}.getType());
JsonArray jsonArray = element.getAsJsonArray();