java本地文件下载功能

文件下载部分:以二进制流数据下载,也是最常见的一种 

  @RequestMapping(value="/downloadqrcodes",method={RequestMethod.GET,RequestMethod.POST})

    public ResponseEntity<byte[]> download(String filename,HttpServletRequest req,HttpServletResponse res) throws Exception {
        
        System.out.println(req.getCharacterEncoding());
        System.out.println(filename);
        ApplicationContext ctx = GetApplication.getApp();
        QrcodepersonMapper qrcodepersonMapper = (QrcodepersonMapper) ctx.getBean("qrcodepersonMapper");
        Qrcodeperson qrcodeperson = qrcodepersonMapper.selectByPrimaryKey(Integer.parseInt(filename));
        String filen = qrcodeperson.getUrlname();
        
        //下载文件路径
        //filename="何家劲.jpg";
        String path = req.getServletContext().getRealPath("/file/");
        File file = new File(path+File.separator+filen);
        System.out.println("文件路径为:"+path+File.separator+filen);
        HttpHeaders headers = new HttpHeaders();
        //下载显示的文件名,解决中文名称乱码的问题
        String downloadFileName = new String(filen.getBytes("UTF-8"), "ISO-8859-1");  //为了下载下来的名字和文件的名字相同
        System.out.println(downloadFileName);
        //通知浏览器以attachment(下载方式)打开图片
        headers.set(filen, null);
        headers.setContentDispositionFormData("attachment", downloadFileName);
        //application/octet-stream:二进制流数据(最常见的文件下载)
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
        //201 HttpStatus.CREATED
        return new ResponseEntity<byte[]>(FileUtils.readFileToByteArray(file), headers,HttpStatus.CREATED);    
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值