-
Notifications
You must be signed in to change notification settings - Fork 2
02. ExcelWorkbook excel对象
吃茫茫 edited this page Oct 15, 2020
·
1 revision
该对象对应的是整个 excel 文件,包含了所有 sheet 页的表格对象,目前阶段该对象的实际使用场景并不太多,所以提供的方法较少
-
getSheet(int index)
-
getSheet(String sheetName)
获取指定的 sheet 页对象,并返回。 -
getXssfWorkbook()
该方法会返回 Apache poi 原生的xssfWorkbook
对象,提供给开发者进行 poi 的一些原生操作。