hutool包,真是好用,方便,强烈推荐…
https://hutool.cn/docs/index.html#/ 然后使用Excel的工具类,还需要引入poi-ooxml包版本的话,报错里面有
自己确认一下就好了

<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.17</version>
        </dependency>

一行代码搞定:常用的就是read方法了.

ExcelReader reader = ExcelUtil.getReader(FileUtil.file("C:\\Users\\stack\\Desktop\\hanke\\aaa.xlsx"));

java解析Excel使用hutool工具类_好用