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

java流下载

时间:2015-03-09 14:17:46      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

 

 

@RequestMapping("/pluginDownload")
    public void pluginDownload(HttpServletResponse response) throws FileNotFoundException {
        // 下载本地文件
        String fileName = "plugin.rar";
        // 读到流中
        InputStream inStream = new FileInputStream("d:/up_pipegis/plugin/plugin.rar");
        // 设置输出的格式
        response.reset();
        response.setContentType("bin");
        response.addHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");
        // 循环取出流中的数据
        byte[] b = new byte[128];
        int len;
        try {
            while ((len = inStream.read(b)) > 0)
                response.getOutputStream().write(b, 0, len);
            inStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 

java流下载

标签:

原文地址:http://www.cnblogs.com/vvonline/p/4323327.html

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