SpringBoot如何实现文件上传

如何实现文件上传?

前端文件上传表单代码:

<form role="form" th:action="@{/update}" method="post" enctype="multipart/form-data">
                            <div class="form-group">
                                <label for="exampleInputEmail1">邮箱</label>
                                <input type="email" name="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
                            </div>
                            <div class="form-group">
                                <label for="exampleInputPassword1">名字</label>
                                <input type="text" name="username" class="form-control" id="exampleInputPassword1" placeholder="Password">
                            </div>
                         <div class="form-group">
                            <label for="exampleInputFile">头像</label>
                            <input type="file" name="headerImg" id="exampleInputFile">
                            <p class="help-block">Example block-level help text here.</p>
                        </div>
                            <div class="form-group">
                                <label for="exampleInputFile">生活照</label>
                                <input type="file" name="photos" multiple>
                                <p class="help-block">Example block-level help text here.</p>
                            </div>
                            <div class="checkbox">
                                <label>
                                    <input type="checkbox"> Check me out
                                </label>
                            </div>
                            <button type="submit" class="btn btn-primary">提交</button>
                        </form>

浏览器显示:

 后端代码编写:

我们可以通过@RequestParam来获取上传来的文本字段,使用@RequestPart来获取上传的文件。

 @PostMapping("/update")
    public String upload(@RequestParam("email") String email,
                         @RequestParam("username") String username,
                         @RequestPart("headerImg") MultipartFile headerImg,
                         @RequestPart("photos") MultipartFile[] photos ) throws IOException {
        //判断获取的文件是否为空
        if(!headerImg.isEmpty()){
            //文件不为空则获取文件名并存入磁盘
            String filename = headerImg.getOriginalFilename();
            headerImg.transferTo(new File("C:\\phototest\\"+filename));
        }
        //多文件上传
        if(photos.length>0){
            for (MultipartFile photo : photos) {
                if(!photo.isEmpty()){
                    //文件不为空则获取文件名并存入磁盘
                    String originalFilename = photo.getOriginalFilename();
                    photo.transferTo(new File("C:\\phototest\\"+originalFilename));
                }
            }
        }
        return "main";
    }

SpringBoot本身限制了文件上传的大小,我们还需要自定义上传文件的大小:

spring: 
 servlet:
    multipart:
      max-file-size: 10MB
      max-request-size: 100MB

注意!一定要写清文件上传的磁盘路径(C:\\phototest\\),否则会报错!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

龙城桥少

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值