欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HSSF和XSSF

程序员文章站 2022-07-13 12:59:33
...

HSSF是POI工程对Excel(.xls)文件操作的实现,XSSF是POI工程对Excel(.xlsx)文件操作的实现. gradle.build

dependencies {
	compile('org.springframework.boot:spring-boot-starter')
	testCompile('org.springframework.boot:spring-boot-starter-test')
	compile('org.apache.poi:poi:3.9')
	compile('org.apache.poi:poi-ooxml:3.9')
	compile('org.springframework.boot:spring-boot-starter-web')
}```
spring-poi-demo: https://github.com/maomaolsm/spring-poi

转载于:https://my.oschina.net/maomaolsm/blog/725116