spring boot 文件上传接口设计

2019-04-15 17:47发布

多文件上传,参数是album


for (MultipartFile file : album) { temp_photoName=file.getOriginalFilename(); System.out.println("upload pic:"+temp_photoName); File photo = new File(path, temp_photoName); if (!photo.exists()) { try { photo.createNewFile(); FileUtils.writeByteArrayToFile(photo, file.getBytes()); } catch (IOException e) { e.printStackTrace(); } } } 前端如果用post请求来上传文件的时候,注意定义在后台的多文件的参数名。