nicolaken 02/03/14 03:11:13
Modified: . README.txt
Log:
Inserting the description of the project that was missing. Others please complete
both this file and project-info.xml.
Revision Changes Path
1.4 +27 -3 jakarta-poi/README.txt
Index: README.txt
===================================================================
RCS file: /home/cvs/jakarta-poi/README.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- README.txt 9 Mar 2002 21:07:35 -0000 1.3
+++ README.txt 14 Mar 2002 11:11:13 -0000 1.4
@@ -7,9 +7,33 @@
What is it?
-----------
-
-
-
+ The POI project consists of APIs for manipulating various file formats
+ based upon Microsoft's OLE 2 Compound Document format using pure Java.
+
+ A common misconception is that POI writes Excel files. POI is the name
+ of the project.
+ POI contains several components, one of which, HSSF, writes Excel files.
+ The following are components of the entire POI project.
+
+ POIFS
+ -----
+ The oldest and most stable part of the project.
+ It is our port of the OLE 2 Compound Document Format to pure Java.
+ It supports both read and write functionality.
+ All of our components ultimately rely on it by definition.
+
+ HSSF
+ -----
+ It's our port of the Microsoft Excel 97(-2002) file format (BIFF8)
+ to pure Java. It supports read and write capability.
+
+ HDF
+ ---
+ It's our port of the Microsoft Word 97 file format to pure Java.
+ It supports read and write capability.
+ This component is in the early stages of design.
+ Jump in!
+
Where is it?
------------