java 实现导出Excel文件

时间:2023-01-14 11:36:53

java 实现导出Excel(java生成 excel 并导出文件)

经常有有一些数据需要导出成   excel  格式 ,所以就需要实现啦

开始:

1.加入jar

   poi-3.6-20091214.jar

   commons-logging-1.1.jar

    junit-3.8.1.jar

    log4j-1.2.13.jar

2. 实现代码 :

 /**
* 创建excel
*
* @param list
* @param request
* @param response
*/
private void excel(List<MyBrowselog> list, HttpServletRequest request, HttpServletResponse response) {
OutputStream outputStream = null;
response.setCharacterEncoding("utf-8");
response.setContentType("application/x-msdownload");
try {
response.setHeader("Content-disposition",
"attachment;filename=" + new String("个人用户统计".getBytes("utf-8"), "ISO8859-1") + ".xls");
} catch (UnsupportedEncodingException e2) {
e2.printStackTrace();
}
try {
outputStream = response.getOutputStream();
} catch (IOException e1) {
e1.printStackTrace();
} SXSSFWorkbook workbook = new SXSSFWorkbook(list.size() + 1);
Sheet sheet = workbook.createSheet("个人用户统计");
Row headRow = sheet.createRow(0);
Cell cell0 = headRow.createCell(0);
cell0.setCellValue("用户名");
Cell cell1 = headRow.createCell(1);
cell1.setCellValue("浏览量");
Cell cell2 = headRow.createCell(2);
cell2.setCellValue("下载量");
// 创建行
for (int i = 0; i < list.size(); i++) {
Row dataRow = sheet.createRow(i + 1);
Cell cell_0 = dataRow.createCell(0);
cell_0.setCellValue(list.get(i) == null ? "" : list.get(i).getUserLoginName());
Cell cell_1 = dataRow.createCell(1);
cell_1.setCellValue(list.get(i) == null ? "" : list.get(i).getBrowseCount());
Cell cell_2 = dataRow.createCell(2);
cell_2.setCellValue(list.get(i) == null ? "" : list.get(i).getDownloadCount());
}
try {
workbook.write(outputStream);
} catch (IOException e1) {
e1.printStackTrace();
}
try {
outputStream.flush();
outputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}

3.各个参数详解

HSSF(用于操作Excel的组件)提供给用户使用的对象在rg.apache.poi.hssf.usermodel包中,主要部分包括Excel对象,样式和格式,还有辅助操作。有以下几种对象:

    常用组件:

    HSSFWorkbook                      excel的文档对象

    HSSFSheet                         excel的表单

    HSSFRow                           excel的行

    HSSFCell                          excel的格子单元

    HSSFFont                          excel字体

    HSSFDataFormat                    日期格式

    HSSFHeader                        sheet头

    HSSFFooter                        sheet尾(只有打印的时候才能看到效果)

    样式:

    HSSFCellStyle                       cell样式

    辅助操作包括:

    HSSFDateUtil                        日期

    HSSFPrintSetup                      打印

    HSSFErrorConstants                  错误信息表

4.基本操作步骤

    1、用HSSFWorkbook打开或者创建“Excel文件对象”

    2、用HSSFWorkbook对象返回或者创建Sheet对象

    3、用Sheet对象返回行对象,用行对象得到Cell对象

    4、对Cell对象读写。

  个人参考他人博客 及 自己项目:

  https://blog.csdn.net/xunwei0303/article/details/53213130