From 0dd1673fd228bce162cef7750d24cedf6ad583e2 Mon Sep 17 00:00:00 2001 From: "Andrew C. Oliver" Date: Sat, 2 Feb 2002 02:41:34 +0000 Subject: [PATCH] made docs meaningful git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352073 13f79535-47bb-0310-9956-ffa450edef68 --- src/documentation/xdocs/hssf/index.xml | 28 ++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/src/documentation/xdocs/hssf/index.xml b/src/documentation/xdocs/hssf/index.xml index f230683cdb..f956b0f289 100644 --- a/src/documentation/xdocs/hssf/index.xml +++ b/src/documentation/xdocs/hssf/index.xml @@ -15,8 +15,32 @@

HSSF is the POI Project's pure Java implementation of the Excel '97(-2002) file format.

-

Please see the HOWTO for usage information.

-

TODO: turn this page into a meaningful summary.

+

HSSF provides a way to read spreadsheets create, modify, read and write XLS spreadsheets + It provides: +

+ +

+ Truth be told there is probably a better way to generate your spreadsheet + generation (yet you'll still be using HSSF indirectly). At the time of + this writing we're in the process of moving the HSSF Serializer over to + the Apache Cocoon + Project. With Cocoon you can serialize any XML datasource (of + which might be a ESQL page outputting in SQL for instance) by simply + applying the stylesheet and designating the serializer. +

+

+ If you're merely reading spreadsheet data, then use the eventmodel api + in the org.apache.poi.hssf.eventmodel package. +

+

+ If you're modifying spreadsheet data then use the usermodel api. You + can also generate spreadsheets this way, but using Cocoon (which will do + it this way indirectly) is the best way...we promise. +