springboot文件下载demo

本文档详细介绍了如何在SpringBoot应用中实现文件下载功能,包括前端页面链接的准备和Controller的编写步骤。
摘要由CSDN通过智能技术生成

springboot文件下载小demo

一、准备前端页面链接

<a href="../file/download?fileName=xxxx.xxx">xxx.xxx</a>

二、编写Controller

@RequestMapping("/download")
//注意返回值是void,不能响应跳转页面和响应流,只能二选一
public void download(String fileName, HttpServletRequest request, HttpServletResponse response) throws Exception {
    	//获得下载的资源文件夹
        String realPath = request.getRealPath("/upload");
    	//获得输入流
        FileInputStream is = new FileInputStream(new File(realPath, fileName));
    	//获得输出流
        ServletOutputStream os = response.getOutputStream();
    	//以附件的形式下载
        response.setHeader("content-disposition","attachment;fileName="+ URLEncoder.encode(fileName,"UTF-8"));
        IOUtils.copy(is,os);
        IOUtils.closeQuietly(is);
        IOUtils.closeQuietly(os);
    }

总结

注意:响应跳转页面和响应输入流只能选择一个,否则500异常。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值