我想制作一个像这样的Excel工作表:

NAME | ADDRESS | PH
====================
Dad  |   IND   | 123
Mom  |   IND   | 123
Me   |   IND   | 123


DadMomMe在列表中。我已经尝试过编写代码,但这似乎是错误的。它不会逐行写入,而是覆盖每个循环中的所有内容。这是代码:

HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet("new sheet");

Row row1 = sheet.createRow((short) 0);
row1.createCell(0).setCellValue("Name");
row1.createCell(1).setCellValue("Address");
row1.createCell(2).setCellValue("Ph");

List<pegawai> list_pegawai = test.list_pegawai();
int a = list_pegawai.size();
for (pegawai p : list_pegawai) {
    for (i = 1; i <= a; i++) {
         Row row2 = sheet.createRow((short) i);
         row2.createCell(0).setCellValue(p.getName());
         row2.createCell(1).setCellValue(p.getAddress());
         row2.createCell(2).setCellValue(p.getPh());
    }
}
FileOutputStream fileOut = new FileOutputStream("C:\\Users\\Documents\\workbook.xls");
wb.write(fileOut);
fileOut.close();
JOptionPane.showMessageDialog(null, "SUCCESS");


谢谢你们的回答和帮助:)

最佳答案

尝试

int i = 1;
for (pegawai p : list_pegawai) {
     Row row2 = sheet.createRow(i++);
     row2.createCell(0).setCellValue(p.getName());
     row2.createCell(1).setCellValue(p.getAddress());
     row2.createCell(2).setCellValue(p.getPh());
 }


您已经在列表中进行遍历,无需重复两次。您不想每次都创建一个新的row

10-01 17:33