zoukankan      html  css  js  c++  java
  • 上传文件(SpringBoot Mybatis-Plus)

    Controller

       /**
         * 文件上传
         */
        @PostMapping(value = "/uploadFile")
        @ResponseBody
        public HttpResult uploadFile(@RequestParam("file") MultipartFile multipartFile) throws Exception {
            sysSubjectService.uploadSubjectMould(multipartFile);
            return HttpResult.ok("上传完成");
        }
    

    Service

     @Override
        public Boolean uploadSubjectMould(MultipartFile multipartFile) {
            FileIOUtil fileIOUtil = new FileIOUtil();
            Boolean flag = fileIOUtil.uploadFile(multipartFile);
            return flag;
        }
    

    FileIOUtil

    import org.apache.tomcat.util.http.fileupload.util.Streams;
    
    public class FileIOUtil {
            public Boolean uploadFile(MultipartFile multipartFile) {
                //设置文件名以及路径
                String fileName = new String(multipartFile.getOriginalFilename()
     .substring(multipartFile.getOriginalFilename().indexOf(".")));
                String filePath = "D:\file" + File.separator + fileName;
    
                File file = new File(filePath);
                if (!file.getParentFile().exists()) {
                    file.getParentFile().mkdirs();
                }
                try {
                    if (multipartFile != null) {
                        try {
                            //以原来的名称命名,覆盖掉旧的
                            Streams.copy(multipartFile.getInputStream(), new FileOutputStream(filePath), true);
                            //或者下面的
                            // Path path = Paths.get(storagePath);
                            //Files.write(path,multipartFile.getBytes());
                        } catch (IOException e) {
                            ExceptionUtils.getFullStackTrace(e);
                        }
                    }
                } catch (Exception e) {
                    return false;
                }
                return true;
            }
        }
    
  • 相关阅读:
    package.json文件
    Node.js中模块加载机制
    第三方模块
    系统模块
    Node.js快速入门及模块化开发
    String 的扩展方法
    ES6 的内置对象扩展
    箭头函数
    解构赋值
    let、const、var 的区别
  • 原文地址:https://www.cnblogs.com/ideaAI/p/14751374.html
Copyright © 2011-2022 走看看