@Test
public void testArrayListToJson(){
ArrayList<Journal> expectListNew = new ArrayList<>();
JSONArray expectJsonArray = new JSONArray();
expectListNew.stream().forEach(obj->{
expectJsonArray.add(obj);
});
}
就是把每个元素添加到JSONArray里面。完。