springmvc文件上传与下载

springmvc文件上传与下载,第1张

springmvc文件上传与下载

导入pom文件

 
    
      commons-fileupload
      commons-fileupload
      1.3.1
    
    
      commons-io
      commons-io
      2.5
    

xml配置

 
        
        
    

前端页面

文件上传

控制层部分

package com.zmc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.UUID;
@Controller
@RequestMapping("/file")
public class FileController {
    

    @RequestMapping("/upload")
    public String upload(MultipartFile file, HttpServletRequest request, Model m) throws IOException {
//        (创建)设置文件上传目录 (项目内部)
        String uploadPath=request.getServletContext().getRealPath("uploadPath");
//       上传自定义电脑资源管理器
//        String uploadPath="D:/aaa";
//        判断目录是否存在,不存在就创建
        File file1=new File(uploadPath);
        if (!file1.exists()) {
            file1.mkdirs();
        }
//        获取文件原始名
        String originalName=file.getOriginalFilename();
//        获取文件后缀名
        String suffix=originalName.substring(originalName.lastIndexOf("."));
//        构建文件上传具体路径
        String detailPath=uploadPath.concat(File.separator).concat(UUID.randomUUID().toString()).concat(suffix);
        file.transferTo(new File(detailPath));
        m.addAttribute("detailPath",detailPath);
        return "success";
    }
}

文件下载

 @RequestMapping("/downLoad")
    public ResponseEntity downLoad(HttpServletRequest request, String fileName) throws IOException {
//        获取文件文件地址信息(在项目内部)
        String upload = request.getServletContext().getRealPath("upload");
//        拼接出具体路径,判断文件是否存在
        File file1 = new File(upload.concat(File.separator).concat(fileName));
        if (!file1.exists()) {
            return null;
        }
//        创建标头文件对象
        HttpHeaders headers = new HttpHeaders();
//        解决乱码问题
        String s = new String(fileName.getBytes(StandardCharsets.UTF_8), "iso-8859-1");
//        以下载方式打开文件
        headers.setContentDispositionFormData(s, fileName);
//        二进制流
        headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);

        return new ResponseEntity(FileUtils.readFileToByteArray(file1),headers, HttpStatus.CREATED);
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5573492.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存