how to solve JXL error : jxl.read.biff.BiffException: Unable to recognize OLE stream

前端 未结 8 689
闹比i
闹比i 2021-01-04 00:57

i am trying to get cell data from my .csv file but it gets error : jxl.read.biff.BiffException: Unable to recognize OLE stream

I don\'t understand how to solve this

8条回答
  •  太阳男子
    2021-01-04 01:39

    JXL library doesnot support .csv and .xslx formats, which is the format used by Excel-2010. hence, use Excel 97-2003 which is .xls foramatted and is supported by JXL library. or else if you want to use excel-2010, use APACHE POI(XSSFWorkbooks) instead of JXL. For using .csv format, google for CSVReader libraries.

提交回复
热议问题