码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC把后台文件打印到前台

时间:2017-09-14 20:14:58      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:puts   inpu   name   write   http   download   while   com   try   

实现效果如下:

技术分享

代码为:

@RequestMapping(value = "/tools/printContract")
public void cell(HttpServletResponse response,HttpServletRequest request,String outName) {
    //根据outName获取到保存在服务器上的文件
    String filePath = request.getSession().getServletContext().getRealPath(ImgUtil.TOOLS_PATH+ImgUtil.TOOLS_TXT)+‘/‘+outName+".txt";
    try(OutputStream out = response.getOutputStream()) {
        Date currentTime = new Date();
        SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd_HHmmss");
        String dateString = formatter.format(currentTime);
        //fileName是输出的文件的名字(不支持中文),包括了后缀
        String fileName = "EncryptFile_" + dateString + ".txt";
        byte[] bytes = FileEcodeUtil.file2byte(filePath);
        response.setContentType("application/x-msdownload");
        response.setHeader("Content-Disposition","attachment;filename=" + fileName);
        response.setContentLength(bytes.length);
        out.write(bytes);
        out.flush();
    } catch (IOException e) {
    //e.printStackTrace();
    }
}

//上面用到的file2byte方法为:
public static byte[] file2byte(String filePath) {
    byte[] buffer = null;
    File file = new File(filePath);
    try (FileInputStream fis = new FileInputStream(file);
         ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
        byte[] b = new byte[1024];
        int n;
        while ((n = fis.read(b)) != -1) {
            bos.write(b, 0, n);
        }
        buffer = bos.toByteArray();
    } catch (Exception e) {
        // e.printStackTrace();
    }
    return buffer;
}

 

原创文章,欢迎转载,转载请注明出处!

SpringMVC把后台文件打印到前台

标签:puts   inpu   name   write   http   download   while   com   try   

原文地址:http://www.cnblogs.com/acm-bingzi/p/springPrintFile.html

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