Java解析Excel的工具包jar(maven地址)

maven 仓库地址

<dependency>
  <groupId>com.gitee.oumingyuangroupId>
  <artifactId>excelartifactId>
  <version>1.3-releaseversion>
dependency>

<dependency>
	<groupId>org.apache.poigroupId>
    <artifactId>poi-ooxmlartifactId>
    <version>4.0.1version>
dependency>

gradle 仓库地址

implementation 'com.gitee.oumingyuan:excel:1.3-release'
compile group: 'org.apache.poi', name: 'poi-ooxml', version: '4.0.1'

使用方法

public static void main(String[] args) throws ExcelException {
        System.out.println(ExcelReader.readExcel("D:\\file\\excel\\person.xlsx"));
}

你可能感兴趣的:(Java)