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请求来上传文件的时候,注意定义在后台的多文件的参数名。