diff --git a/src/documentation/content/xdocs/hwpf/index.xml b/src/documentation/content/xdocs/hwpf/index.xml index 5dba67735..0f824f4d1 100644 --- a/src/documentation/content/xdocs/hwpf/index.xml +++ b/src/documentation/content/xdocs/hwpf/index.xml @@ -22,8 +22,11 @@
HWPF is still in early development. It is in the - scratchpad section of the SVN. - Source in the + scratchpad section of the SVN. You will need to ensure you + either have a recent SVN checkout, or a recent SVN nightly build + (including the scratchpad jar!)
+ +Source in the org.apache.poi.hwpf.model tree is the old legacy code refactored into an object model. Source code in the org.apache.poi.hwpf.extractor tree is a wrapper of this to diff --git a/src/documentation/content/xdocs/hwpf/quick-guide.xml b/src/documentation/content/xdocs/hwpf/quick-guide.xml index 2a91b50e5..b60b5f1a0 100644 --- a/src/documentation/content/xdocs/hwpf/quick-guide.xml +++ b/src/documentation/content/xdocs/hwpf/quick-guide.xml @@ -12,6 +12,12 @@
+HWPF is still in early development. It is in the + scratchpad section of the SVN. You will need to ensure you + either have a recent SVN checkout, or a recent SVN nightly build + (including the scratchpad jar!)
+For basic text extraction, make use of
org.apache.poi.hwpf.extractor.WordExtractor
. It accepts an input
@@ -41,5 +47,13 @@ can then get text and other properties.
code is know to have bugs in it.
For now, the best source of additional examples is in the unit + tests. + Browse the HWPF unit tests. +
+