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

java 下载

时间:2019-05-29 14:54:54      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:except   contex   pos   浏览器   addheader   out   ring   编码   puts   

@RequestMapping(value = "down",method = RequestMethod.GET)
    @ResponseBody
    public void down(HttpServletRequest request, HttpServletResponse response) throws IOException {
        //获取根目录
        String realPath = request.getSession().getServletContext().getRealPath("/");
     //文件名
        String filename = "com.association.kingsuper_1.1.1_25.apk";
        // GET请求中,参数中包含中文需要自己动手来转换。
        // 当然如果你使用了“全局编码过滤器”,那么这里就不用处理了
        filename = new String(filename.getBytes("ISO-8859-1"), "UTF-8");
      //文件地址
        String filepath = realPath + filename;
        File file = new File(filepath);
        if(!file.exists()) {
            response.getWriter().print("您要下载的文件不存在!");
            return;
        }
        // 所有浏览器都会使用本地编码,即中文操作系统使用GBK
        // 浏览器收到这个文件名后,会使用iso-8859-1来解码
        filename = new String(filename.getBytes("GBK"), "ISO-8859-1");
        response.addHeader("content-disposition", "attachment;filename=" + filename);
        IOUtils.copy(new FileInputStream(file), response.getOutputStream());
    }

 

java 下载

标签:except   contex   pos   浏览器   addheader   out   ring   编码   puts   

原文地址:https://www.cnblogs.com/SeaWxx/p/10943428.html

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