In my app I have used Apache POI 3.8 for XLS file processing.
Now I want to migrate to Apache POI 3.9 latest and stable version. I have added the JAR file poi-3.9-20121203.jar in my application and removed JARs related to POI 3.8.
But it seems that, in 3.9 version, the WorkbookFactory class has been removed.
So how can I create a Workbook
with WorkbookFactory
in Apache POI 3.9 ?
I extracted the JAR and checked, there is no class like WorkbookFactory
.
Can anyone tell me how to create a new workbook with POI 3.9?