文件下载

霄
2024-07-13 / 0 评论 / 3 阅读 / 正在检测是否收录...

/**
     * 文件下载
     * @param filename
     * @return
     * @throws Exception
     */
    @RequestMapping("/download")
    public ResponseEntity<byte[]> fileDownload(HttpServletRequest request,String filename)throws Exception{
        //指定要下载的文件路径
        String path = request.getServletContext().getRealPath("/upload/");
        //创建文件对象
        File file = new File(path+File.separator+filename);
        //对文件名编码防止中文乱码
        filename=this.getFilename(request,filename);
        //设置响应头
        HttpHeaders headers = new HttpHeaders();
        //通知浏览器以下载的方式打开文件
        headers.setContentDispositionFormData("attachment", filename);
        //定义以流的形式下载返回文件数据
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        //使用Spring MVC框架的responseEntity对象封装返回下载的数据
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file),headers,HttpStatus.OK);

    }
    /**
     * 根据浏览器的不同进行编码设置,返回编码后的文件名
     * @param request
     * @param filename
     * @return
     * @throws UnsupportedEncodingException 
     */
    private String getFilename(HttpServletRequest request, String filename) throws UnsupportedEncodingException {
        //IE不同版本User-Agent中出现的关键词
        String[] iEBrowserKeyWord={"MSIE","Trident","Edge"};
        //获取请求头代理信息
        String userAgent = request.getHeader("User-Agent");
        for (String keyWord : iEBrowserKeyWord) {
            if (userAgent.contains(keyWord)) {
                //如果是就是IE内核浏览器,统一用UTF-8编码显示
                return URLEncoder.encode(filename,"UTF-8");
            }
        }
        //其他浏览器
        return new String(filename.getBytes("UTF-8"),"ISO-8859-1");
    }
扫描二维码,在手机上阅读!
99

评论

博主关闭了当前页面的评论