poi导出excel

Posted zhanghaibk

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poi导出excel相关的知识,希望对你有一定的参考价值。

// 创建一个Excel文件
HSSFWorkbook workbook = new HSSFWorkbook();
// 创建一个工作表
HSSFSheet sheet = workbook.createSheet("销售订单列表");
// 添加表头行
HSSFRow hssfRow = sheet.createRow(0);
// 设置单元格格式居中
HSSFCellStyle cellStyle = workbook.createCellStyle();
cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);

// 添加表头内容
HSSFCell headCell = hssfRow.createCell(0);
headCell.setCellValue("订单编号");
headCell.setCellStyle(cellStyle);

headCell = hssfRow.createCell(1);
headCell.setCellValue("产品编号");
headCell.setCellStyle(cellStyle);

headCell = hssfRow.createCell(2);
headCell.setCellValue("销售员编号");
headCell.setCellStyle(cellStyle);

// 添加数据内容
for (int i = 0; i < xsLists.size(); i++) {
hssfRow = sheet.createRow((int) i + 1);
XSList xsList = xsLists.get(i);

// 创建单元格,并设置值
HSSFCell cell = hssfRow.createCell(0);
cell.setCellValue(xsList.getSaleno());
cell.setCellStyle(cellStyle);

cell = hssfRow.createCell(1);
cell.setCellValue(xsList.getProductno());
cell.setCellStyle(cellStyle);

cell = hssfRow.createCell(2);
cell.setCellValue(xsList.getStaffno());
cell.setCellStyle(cellStyle);
}

// 保存Excel文件
try {
OutputStream outputStream = new FileOutputStream("E:/XSList.xls");
workbook.write(outputStream);
outputStream.close();
} catch (Exception e) {
e.printStackTrace();
}

  

以上是关于poi导出excel的主要内容,如果未能解决你的问题,请参考以下文章

基于POI导出Excel数据

如何用poi导出excel设置列宽

java poi导出excel

Java poi导出Excel,小数点后面数据缺失

java poi xwpf操作word生成一个表格怎么合并单元格,求大神指导!

用poi导出excel设置列宽的方法