第一种方法:
/**
* 下载文件到本地
* @param filePathArr path 文件路径
*fileName 文件名
* @param response
* @throws IOException
*/
public static void download(String[] filePathArr, HttpServletResponse response) throws IOException {
File file = new File(filePathArr[0]+"\\"+filePathArr[1]);
response.setContentType("application/octet-stream");
response.setHeader("Content-disposition","attachment;
fileName="+ URLEncoder.encode(filePathArr[1],"UTF-8"));
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream());
byte[] buff = new byte[2048];
while(true){
int bytesRead;
if(-1 == (bytesRead = bis.read(buff))) break;
bos.write(buff,0,bytesRead);
}bis.close();
bos.close();
}
第二种方法:
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
public static ResponseEntity download(String[] filePathArr, HttpServletResponse response) throws IOException {
File file = new File(filePathArr[0]+"\\"+filePathArr[1]);
HttpHeaders headers = new HttpHeaders();
headers.setContentDispositionFormData("attachment", new String(filePathArr[1].getBytes("UTF-8"),"iso-8859-1"));
//application/octet-stream : 二进制流数据(最常见的文件下载
headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);
return new ResponseEntity(FileUtils.readFileToByteArray(file),
headers, HttpStatus.CREATED);
}
Content-Disposition属性有两种类型:inline 和 attachment
inline :将文件内容直接显示在页面
attachment:弹出对话框,让用户下载
【从服务器下载文件到本地】欢迎关注我的微信公众号,会同步更新python、java、算法等相关内容!!!
文章图片
推荐阅读
- Java|Java基础——数组
- 人工智能|干货!人体姿态估计与运动预测
- java简介|Java是什么(Java能用来干什么?)
- Java|规范的打印日志
- Linux|109 个实用 shell 脚本
- 程序员|【高级Java架构师系统学习】毕业一年萌新的Java大厂面经,最新整理
- Spring注解驱动第十讲--@Autowired使用
- SqlServer|sql server的UPDLOCK、HOLDLOCK试验
- jvm|【JVM】JVM08(java内存模型解析[JMM])
- 技术|为参加2021年蓝桥杯Java软件开发大学B组细心整理常见基础知识、搜索和常用算法解析例题(持续更新...)