[JAVA] Adding the VO list received from the DB



// add list

List<GetVO> addInfo = new ArrayList<GetVO>(); 

// list get from DB

List<GetVO> GetInfo = service.getInfo(GetVO);

for(int h=0; h<GetInfo.size(); h++) {

addInfo.add((GetVO) GetInfo.get(h));

}


It is used because a little manipulation is required to extract three different numbers of data result values ​​into one Excel screen.


😀

Thank you!!

Comments