码迷,mamicode.com
首页 > Web开发 > 详细

文件上传

时间:2021-07-06 16:22:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:try   ima   exist   loading   pre   int   param   lazy   自动   

@PostMapping("uploads")

public String posts(@RequestParam("file") List<MultipartFile> files){//参数file以list数组接收
    if (files.isEmpty()) {
        return "上传失败,请选择文件";
    }

    //如果目录不存在,则自动创建
    String filePath = "d:\\files\\";
    if (!new File(filePath).exists()) {
        new File(filePath).mkdirs();
    }

    //遍历文件,一个个保存到服务器
    for (MultipartFile file : files) {
        String fileName = file.getOriginalFilename();
        File dest = new File(filePath + fileName);
        try {
            file.transferTo(dest);
        } catch (IOException e) {
            e.printStackTrace();
            return "上传失败!";
        }
    }
    return "上传成功";
}

技术图片

 

文件上传

标签:try   ima   exist   loading   pre   int   param   lazy   自动   

原文地址:https://www.cnblogs.com/ywsheng/p/14972928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!