当前位置:   article > 正文

简易的springboot上传头像(图片)代码片段

简易的springboot上传头像(图片)代码片段
 /**
     * 上传头像
     *
     * @throws IOException
     * @throws IllegalStateException
     */
    public String upload(MultipartFile file) throws IllegalStateException, IOException {

        File dir = new File(rootpath);
        if (!dir.exists()) {
            dir.mkdirs();
        }

        //读取文件名
        String fileName = file.getOriginalFilename();
        if (!StringUtil.isEmpty(fileName)) {

            //获取文件的后缀
            String suffix = FilenameUtils.getExtension(fileName);
            //UUID.randomUUID().toString()是javaJDK提供的一个自动生成主键的方法,生成唯一的标识
            //修改后的文件名(带后缀)
            String newFileName = UUID.randomUUID().toString().toLowerCase() + "." + suffix;
            //public File(File parent, String child)--->dir就是相当于这个文件的路径(不包含这个文件的文件名),newFileName指的是文件名;
            File targetFile = new File(dir, newFileName);
            //将文件提交到目的地文件系统中
            file.transferTo(targetFile);

            System.out.println(newFileName + "mmm");
            //图片上传以后,“\\”要变成“/”、而且前面的根路径也不需要了;
            String imgpath = targetFile.getPath().replace("\\", "/").replace(rootpath, "");
            System.out.println(imgpath);
            return imgpath;
        } else {
            return null;
        }

    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/393439
推荐阅读
相关标签
  

闽ICP备14008679号