Reading data from xlsx with Apache POI's SXSSFSheet

后端 未结 1 505
我在风中等你
我在风中等你 2020-12-03 18:16

I want to read data ( cell values ) from a certain xlsx file using apachi poi. The code below creates the SXSSFWorkBook instance successfully and assigns db.xl

相关标签:
1条回答
  • 2020-12-03 18:51

    You can't. SXSSFWorkBook is write only, it doesn't support reading

    For low memory reading of .xlsx files, you should look at the XSSF and SAX EventModel documentation

    0 讨论(0)
提交回复
热议问题