springboot版本3.2.0,数据库版本8
mybatisplus版本3.5.4.1
controller层
@PostMapping("/import")
@ResponseBody
public List<User> excelUpload( MultipartFile file) throws IOException{
if (file==null){
System.out.println("文件为空");
}
List<User> userList= EasyExcel.read(file.getInputStream(), User.class,new UserUploadListener(userService))
.head(User.class)
.sheet()
.doReadSync();
System.out.println(userList);
return userList;
}
测试结果
后端返回数据
Postman返回数据
注意
使用postman进行测试时,需要把key传进去,不然会报空文件异常,文章来源:https://www.toymoban.com/news/detail-801877.html
文章来源地址https://www.toymoban.com/news/detail-801877.html
到了这里,关于Springboot通过前端发起请求,上传excel文件解析数据 postman进行操作的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!