使用poi导出excel

我们在做这个项目的时候,需要导出一个excel文件,所以我就想到了使用poi导出数据

下面把代码贴出来,供大家参考,亲测有效,希望小伙伴不要走弯路。


首先把poi  jar包导入项目中,我把我导入的节点提供给大家

   

 org.apache.poi

    poi

    3.9

第一步,先从controller开始

@RequestMapping("/poi/load")

public String poi(Integer soulId, HttpServletResponse response, HttpSession session){

logger.info("进入poi/poi接口");

    HSSFWorkbook hssfWorkbook =poiService.selectBySoulId(soulId, response);

    session.setAttribute("hssfWorkbook",hssfWorkbook);

    return "test/test";

}

我们的业务需求是前台传来soulId的值来下载一个excel文件



第二步,进入service层

@Override

    public HSSFWorkbook  selectBySoulId(Integer soulId, HttpServletResponse response) {

    //从数据库获取数据

        List>list =sysConfigMapper.selectBySoulId(soulId);

        //excel标题

        String[]title ={"商品编号","商品名称","商品规格","商品价格","货架名称"};

        //excel文件名

        String fileName ="台账详情表" +System.currentTimeMillis() +".xls";

        //内容列表 行、列

        int size =list.size();

        String [] []content =new String [size][title.length];

        //sheet名

        String sheetName ="全家台账详情表";

        if(size>0){

           for (int i =0; i

                    Map map =list.get(i);

                try{

                           content[i][0] =map.get("ABIARTICLEID").toString(); //商品编号

                           content[i][1] =map.get("ABIARTICLENAME").toString(); //商品名称

                           content[i][2] =map.get("ABISPEC").toString();//商品规格

                            content[i][3] =map.get("ASPISTANDARDSALESPRICE").toString();//商品价格TITLE

                            content[i][4] =map.get("TITLE").toString();//货架名称

                   }catch (Exception e){

                }

        }

}

// 创建HSSFWorkbook

        HSSFWorkbook wb =ExcelUtil.getHSSFWorkbook(sheetName, title, content, null);

        try {

                   ExportUtil.exportExcel(response, fileName, wb);

            }catch (Exception e) {

            }

                return  wb;

    }

service的接口

/**

* 查询poi下载所需要的数据

*/

public HSSFWorkbook  selectBySoulId(Integer soulId, HttpServletResponse response);


第三步   mapper层

mapper层接口

/**

* 查询poi下载所需要的数据

*/

public List> selectBySoulId (Integer soulId)


第四步   分别是  ExcelUtil类   和   ExportUtil类  

public class ExcelUtil {

/**

* 导出Excel

*

    * @param sheetName   sheet名称

    * @param title    标题

    * @param content 内容

    * @param wb  HSSFWorkbook对象

    */

    public static HSSFWorkbook getHSSFWorkbook(String sheetName, String[]title, String[][]content, HSSFWorkbook wb){

       //第一步 创建一个HSSFWorkbook, 对应一个Excel文件

               if (wb ==null){

                        wb =new HSSFWorkbook();

                 }

       //第二步, 在workbook中添加一个sheet,对应excel文件中的sheet

        HSSFSheet sheet = wb.createSheet(sheetName);

        //第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制

        HSSFRow row =sheet.createRow(0);

        //第四步,创建单元格,并设置表头 设置表头居中

        HSSFCellStyle style = wb.createCellStyle();

        //创建一个居中格式

        style.setAlignment(HSSFCellStyle.ALIGN_CENTER);

        //设置字体

        HSSFFont font = wb.createFont();

        //设置为楷体

        font.setFontName("楷体");

        //创建边框对象

        HSSFCellStyle setBorder = wb.createCellStyle();

        //设置自动换行

        setBorder.setWrapText(true);

        //声明列对象

        HSSFCell cell;

        //创建标题

          for(int i =0; i

                 cell = row.createCell(i);

                 cell.setCellValue(title[i]);

                cell.setCellStyle(style);

          }

       //创建内容

        for(int i =0; i

                String str =",";

                System.out.println(content[i]);

                row =sheet.createRow(i +1);

               for (int j =0; j

                     //将内容按照顺序赋给对应的列对象

                      row.createCell(j).setCellValue(String.valueOf(content[i][j]));

              }

}

                 return wb;

    }

}


public class ExportUtil {

public static void exportExcel(HttpServletResponse response, String fileName, HSSFWorkbook wb)throws  Exception{

fileName =new String(fileName.getBytes(),"ISO-8859-1");

        response.setContentType("application/octet-stream;charset=ISO-8859-1");

        response.setHeader("Content-Disposition", "attachment;filename=" + fileName);

        response.addHeader("Pargam", "no-cache");

        response.addHeader("Cache-Control", "no-cache");

        OutputStream os =response.getOutputStream();

        wb.write(os);

        os.flush();

        os.close();

    }

}

第五步

也就是前端请求

你可能感兴趣的:(使用poi导出excel)