Excel 便捷读取版本 ExcelUtil 2.0.1 发布

重大版本更新提示!!!2.0.1版本发布了!!!

从ExcelUtil1.0发布,自发布起,人民群众对于流导入的呼声就从来没有停止过。

就在昨天我们决定对流导入做支持。昨天2.0.1版本已经发布到maven中央仓库。

不管是之前文件、还是现在的流导入,我们都希望在简简单单的2步就搞定,任何操作复杂的工具类都是耍流氓。

流导入使用demo.
@RequestMapping("/test")
@ResponseBody
public List testImport(MultipartFile file) throws IOException, Exception{
  String keyValue ="手机名称:phoneName,颜色:color,售价:price,时间:sj"; 
  List<PhoneModel> list = ExcelUtil.readXls(file.getBytes(), ExcelUtil.getMap(keyValue),
  "com.lkx.model.PhoneModel");
  return list;
}
引入pom
<!-- https://mvnrepository.com/artifact/net.oschina.likaixuan/excelutil -->
<dependency>
    <groupId>net.oschina.likaixuan</groupId>
    <artifactId>excelutil</artifactId>
    <version>2.0.1</version>
</dependency>

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/119780.html

(0)
上一篇 2021年8月28日
下一篇 2021年8月28日

相关推荐

发表回复

登录后才能评论