第一次发帖,JSP怎么循环的把数据添加到同一个excel?
如题,大神们能给个例子吗?有点急,明天就要交项目了;
我做时,能完成数据输入到excel表格,但是就是不能累积添加到同一个excel表中; jsp excel
[解决办法]
把查询结果循环,
for (int i = 1; i <= li.size(); i++) {
tb_excel ex = (tb_excel) li.get(i - 1);
row = sheet.createRow(i);
row.createCell(0).setCellValue(ex.getRealname());
row.createCell(1).setCellValue(ex.getTime());
row.createCell(2).setCellValue(ex.getUnType());
row.createCell(3).setCellValue(ex.getIp());
}