Archive

Archive for the ‘Apache POI’ Category

Apache POI – Maven – WorkbookFactory Class issue

March 11, 2010 Leave a comment

Problem: Failed to find WorkbookFactory class while working with Apache POI

Solution: Use correct maven configuration and it will be resolved.

   <dependency>
        <groupId>org.apache.poi</groupId>
	<artifactId>poi</artifactId>
	<version>3.6</version>
    </dependency>   
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.5-beta5</version>
    </dependency> 

Categories: Apache POI Tags:
Follow

Get every new post delivered to your Inbox.