POI之下载模板(或各种文件)

Posted Dreamice

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POI之下载模板(或各种文件)相关的知识,希望对你有一定的参考价值。

该例基于Nutz框架

前台代码:

<a href="" id="errordownload"  onclick="downloadErrorLogsFile()"></a>
function downloadErrorLogsFile()
{$("errordownload").attr("href","${base}/platform/sys/user/downloaErrorLogsFile?filename="+filename);}

 

 后台Controler层:

/**
 * 下载模版或其他文件等,
 */
@At
@Ok("void")
public class Download {    
    //下载模版工具类
    public void downloadFile(@Param(fileName)String fileName,HttpServletRequest request,HttpServletResponse response) throws Exception {  

response.setContentType("text/html;charset=UTF-8");

BufferedInputStream in = null;
        BufferedOutputStream out = null;  
        request.setCharacterEncoding("UTF-8");  
        String rootpath = request.getSession().getServletContext().getRealPath("/");  
        try {  
            File f = new File(rootpath + "uploadFile/" + fileName);  
            response.setContentType("application/x-excel");  
            response.setCharacterEncoding("UTF-8");  
            response.setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gbk"),"iso-8859-1"));  
            response.setHeader("Content-Length",String.valueOf(f.length()));  
            in = new BufferedInputStream(new FileInputStream(f));  
            out = new BufferedOutputStream(response.getOutputStream());  
            byte[] data = new byte[1024];  
            int len = 0;  
            while (-1 != (len=in.read(data, 0, data.length))) {  
                out.write(data, 0, len);  
            }  
        } catch (Exception e) {  
            e.printStackTrace();  
        } finally {  
            if (in != null) {  
                in.close();  
            }  
            if (out != null) {  
                out.close();  
            }  
        }  
      
    }
}

 

以上是关于POI之下载模板(或各种文件)的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse 中的通用代码片段或模板

关于一个标准的poi下载文件模板 可拿来来直接使用

T4模板之菜菜鸟篇

POI操作Word模板文本替换(表格文本替换)

java hutool poi 基于excel模板文件,填充数据的思路

java hutool poi 基于excel模板文件,填充数据的思路