首页 > 其他 > 详细

jxls导出EXCEL模板

时间:2014-06-03 09:20:35      阅读:490      评论:0      收藏:0      [点我收藏+]

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模板

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!