On 29/01/2013 15:33, Nick Burch wrote:
On Tue, 29 Jan 2013, bhavinragha wrote:
thanks nick, but im still very confused. i am very new to java, im
using netbeans.

You probably want to read some tutorials on java development with
netbeans, then review the list archive - there was discussions recently
on how to use netbeans with POI (and it looks much more complicated that
with eclipse...)

The easy way to use POI with netbeans is to use maven (which is much simpler than using eclipse :) ).

I'd recommend starting by creating a simple maven project and getting that working, then add the POI dependencies:
        <!-- Apache POI -->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.8</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.8</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>3.8</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-scratchpad</artifactId>
            <version>3.8</version>
        </dependency>


Jim


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to