目录
一、文件上传
1、文件上传介绍
2、文件上传代码实现
然后编写对应的Controller文件com/itheima/reggie/controller/CommonController.java。
package com.itheima.reggie.controller;
import com.itheima.reggie.common.R;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.IOException;
import java.util.UUID;
@RestController
@Slf4j
@RequestMapping("/common")
public class CommonController {
@Value("${reggie.path}")
private String basePath;
@PostMapping("/upload")
public R<String> upload(MultipartFile file){
//file是一个临时文件,需要转存到特定的位置,不然本次请求结束后临时文件会消失
log.info(file.toString());
//获得原文件名
String originalFilename=file.getOriginalFilename();
//截取出原文件后缀
String suffix=originalFilename.substring(originalFilename.lastIndexOf("."));
//使用UUID重新生成文件名,防止文件名称重复造成文件覆盖
String fileName= UUID.randomUUID().toString()+suffix;
//创建一个目录对象
File dir=new File(basePath);
//判断当前目录是否存在
if (!dir.exists()){
//若不存在则创建出来
dir.mkdirs();
}
//转存临时文件到指定位置
try {
file.transferTo(new File(basePath+fileName));
} catch (IOException e) {
e.printStackTrace();
}
return R.success(fileName);
}
}
并在application.yml中配置临时文件转存目录
二、文件下载
1、文件下载介绍
2、代码实现
在com/itheima/reggie/controller/CommonController.java中增加一部分代码
/**
* 文件下载
*/
@GetMapping("/download")
public void download(String name, HttpServletResponse response){
try {
//输入流,通过输入流读取文件内容
FileInputStream fileInputStream=new FileInputStream(new File(basePath+name));
//输出流,通过输出流将文件写回浏览器,在浏览器展示图片
ServletOutputStream outputStream=response.getOutputStream();
response.setContentType("image/jpeg");
int len=0;
byte[] bytes=new byte[1024];
while ((len=fileInputStream.read(bytes))!=-1){
outputStream.write(bytes,0,len);
outputStream.flush();
}
//关闭资源
outputStream.close();
fileInputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}