正在尝试使用 apache poi 阅读特定的 Excel 工作表
Attemping to read specific Excel sheets with apache poi
有谁知道我是否可以指定我想使用 Apache Poi 阅读的工作表的名称?
现在我正在使用 for 阅读工作簿中的所有工作表。
好的,所以回答问题并为您节省很多时间...
是的,可以通过 org.apache.poi.ss.usermodel.Workbook
上的 getSheet(java.lang.String name)
轻松完成。
作为旁注,我强烈建议通读 POI Busy Developers' Guide and the API documentation,因为它是一个非常强大的库,熟悉它可以在将来为您节省很多时间。
有谁知道我是否可以指定我想使用 Apache Poi 阅读的工作表的名称?
现在我正在使用 for 阅读工作簿中的所有工作表。
好的,所以回答问题并为您节省很多时间...
是的,可以通过 org.apache.poi.ss.usermodel.Workbook
上的 getSheet(java.lang.String name)
轻松完成。
作为旁注,我强烈建议通读 POI Busy Developers' Guide and the API documentation,因为它是一个非常强大的库,熟悉它可以在将来为您节省很多时间。