问题描述
我有 3 个列表,分别是 list1、list2 和 list3.我想在 Excel 工作表中将这些列表显示为 3 列.例如,列表 1 中的值应显示在 Excel 工作表的第一列中.我将所有 3 个列表添加到最终列表中,如下所示,并且能够将它们显示为单独的行,但不知道如何显示为列.我正在使用 apachepoi.
I have 3 lists namely list1, list2 and list3. And I want to display these lists in an excel sheet as 3 columns. For example the values in list 1 should be displayed in the first column of Excel sheet. I am adding all the 3 lists to a final list as below and able to display them as separate rows and no idea how can i display as columns. I am using apachepoi.
List<List> finalList = new ArrayList<List>();
finalList .add(list1);
finalList .add(list2);
WritingToExcelFile(List<List> l1) throws Exception { //passing finalList here
try {
for (int j = 0; j < l1.size(); j++) {
Row row = firstSheet.createRow(rownum);
List<String> l2 = l1.get(j);
for (int k = 0; k < l2.size(); k++) {
Cell cell = row.createCell(k);
cell.setCellValue(l2.get(k));
}
rownum++;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
}
}
推荐答案
假设你的列表大小都一样,为什么不这样:
Assuming your lists are all the same size, why not something like:
Sheet s = wb.createSheet();
for (int i=0; i<firstList.size(); i++) {
Row r = s.createRow(i);
r.createCell(0).setCellValue( list1.get(i) );
r.createCell(1).setCellValue( list2.get(i) );
r.createCell(2).setCellValue( list3.get(i) );
}
如果您的列表长度可能不同,请添加额外的错误处理,如果您需要为列表内容设置格式/日期/等,请添加额外的逻辑
Add extra error handling if your lists might not be the same length, and extra logic if you need to do formatting / dates / etc for the list contents
这篇关于将数据写入Excel工作表java的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!