目录
1.做新建菜品里面的上传图片
1.1设置存储路径(先是我们自己存到我们的本地)
2.在controller目录下写代码
3.在过滤器放开这个路径的访问
4.访问localhost:8080/backend/page/demo/upload.html
1.做新建菜品里面的上传图片
1.1设置存储路径(先是我们自己存到我们的本地)
yml中
reggie:path: D:\img\
2.在controller目录下写代码
package com.itheima.reggie.controller;import com.itheima.reggie.common.R;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.UUID;/*** 文件上传和下载*/@RestController
@RequestMapping("/common")
@Slf4j
@Api(tags = "通用文件上传/下载")
public class CommonController {/*** 拿到我们在yml配置中写的路径*/@Value("${reggie.path}")private String basePath;/*** 文件上传* http://localhost:8080/common/upload* @param file* @return*/@PostMapping("/upload")@ApiOperation("文件上传")public R<String> upload(MultipartFile file) {//file是一个临时文件,需要转存到指定位置,否则本次请求完成后临时文件会删除log.info(file.toString());//原始文件名String originalFilename = file.getOriginalFilename();//abc.jpgString suffix = originalFilename.substring(originalFilename.lastIndexOf("."));//使用UUID重新生成文件名,防止文件名称重复造成文件覆盖String fileName = UUID.randomUUID().toString() + suffix;//dfsdfdfd.jpg//创建一个目录对象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);}/*** 文件下载** @param name* @param response*/@GetMapping("/download")@ApiOperation("文件下载")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();}}
}