欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

poi(页面文件导出到excel)实现文件下载

程序员文章站 2024-02-24 13:07:52
...
在写好的excel结构之后,添加如下代码
//通过Response把数据以Excel格式保存  
        response.reset();  
        response.setContentType("application/msexcel;charset=UTF-8");  
        response.setCharacterEncoding("UTF-8");  
        try {  
            response.addHeader("Content-Disposition", "attachment;filename=\""  
                    + new String(("test" + ".xls").getBytes("UTF-8"),  
                            "ISO8859-1") + "\"");  
            OutputStream out = response.getOutputStream();  
            hssfWorkbook.write(out);  
            out.flush();  
            out.close();
            hssfWorkbook.close();
        } catch (Exception e) {  
            e.printStackTrace();  
        }

相关标签: poi excel java