I just started using the new POI 3.6 http://poi.apache.org XSSF which was released in December 2009. The updated API provides support for reading and writing in the OOXML spreadsheet format (.xslx) with Java. So far I've been pretty impressed with the API and haven't really encountered any issues with it.

What issues or gotchas have you encountered working with the 3.6 API if any?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

i got a problem with password protected excel files, it directly throws the exception. i want to tell theuser that file is password protected but at the first place itself i get the exception. This is wat i did after taking the file.

if( wbook1.isWriteProtected() ) {
        System.out.println(" File is Password protected ");
        return false;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.