Workbook オブジェクトを初期化しようとすると、常に次のエラーが発生します。
The supplied data appears to be in the Office 2007+ XML. You are calling the part of POI that deals with OLE2 Office Documents. You need to call a different part of POI to process this data (eg XSSF instead of HSSF)
しかし、私はオフィスのサンプルに従ってこれを行いました.以下は私のコードです:
File inputFile = new File(inputFileName);
InputStream is = new FileInputStream(inputFile);
Workbook wb = new XSSFWorkbook(is);
コード行で例外が発生します:
Workbook wb = new XSSFWorkbook(is);
以下を含む POI jar を次に示します。
poi-3.8-20120326.jar
poi-ooxml-3.8-20120326.jar
poi-ooxml-schemas-3.8-20120326.jar
xmlbeans-2.3.0.jar
誰でも私に指導を与えることができますか?完全な Excel 2007 ドキュメントを読み取る方法を示す例を示していただければ幸いです。前もって感謝します!