码迷,mamicode.com
首页 > 其他好文 > 详细

jxls导出EXCEL模板

时间:2014-06-03 09:40:13      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

http://jxls.sourceforge.net/

bubuko.com,布布扣
    InputStream templateInput = null;
    InputStream in = null;
    OutputStream out = null;
    try {
        templateInput = request.getSession().getServletContext().getResourceAsStream("/downloads/project/fpfa.xls");
        XLSTransformer transformer = new XLSTransformer();
        Map<String, Object> beans = new HashMap<String, Object>();
        Workbook workbook = transformer.transformXLS(templateInput, beans);

        // 下载文件
        File _tempfile = IOUtil.createTempFile();
        out = new FileOutputStream(_tempfile);
        workbook.write(out);
        in = new FileInputStream(_tempfile);
        HttpUtils.download(response, excelname + ".xls", in);
        out.flush();
    } finally {
        if (templateInput != null) {
            templateInput.close();
        }
        if (in != null) {
            in.close();
        }
        if (out != null) {
            out.close();
        }
    }
bubuko.com,布布扣

公司项目里的代码,个别部分自行YY

jxls导出EXCEL模板,布布扣,bubuko.com

jxls导出EXCEL模板

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/duelsol/p/3760543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!