There are a number of examples submitted both by the developers and users of the api. To find them, you will need either to download the source for the api or follow this llink to look into SVN; http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/xssf/usermodel/examples/.
As was mentioned in the previous reply, you can also take a look at the SS examples here; http://svn.apache.org/repos/asf/poi/trunk/src/examples/src/org/apache/poi/ss/examples/ They include a number of more complete example programs that build usable workbooks rather than demonstrating how to use particular features. Again as the previous respondent indicated, it is often wise to consider using the classes in the SS package to build your application because that would allow you to process both types of workbook - binary or OOXML. It does however introduce some extra - very small - complexity with the use of the CreationHelper class which you may wish to avoid if you can be certain - CERTAIN - that you will only ever need to process, for example, OOXML based Excel workbooks. Yours Mark B Will Coleda wrote: > > Hello. > > Trying to evaluate POI for working on Excel 2010 files, and am looking > for some simplistic sample code.I 've found > http://poi.apache.org/spreadsheet/converting.html on the website, but > that seems geared to switching from HSSF; Are there any samples that > focus on XSSF directly? > > Regards. > > -- > Will "Coke" Coleda > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > > -- View this message in context: http://old.nabble.com/XSSF-samples-tp28744452p28750738.html Sent from the POI - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
