mirror of https://github.com/apache/poi.git
Small documentation updates for HPSF writing capabilities.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353323 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a7bd1f276
commit
60ad2a3e2c
|
@ -13,7 +13,7 @@
|
|||
<body>
|
||||
<section><title>How To Use the HPSF APIs</title>
|
||||
|
||||
<p>This HOW-TO is organized in three sections. You should read them
|
||||
<p>This HOW-TO is organized in four sections. You should read them
|
||||
sequentially because the later sections build upon the earlier ones.</p>
|
||||
|
||||
<ol>
|
||||
|
@ -37,6 +37,15 @@
|
|||
non-standard properties. Non-standard properties are application-specific
|
||||
triples consisting of an ID, a type, and a value.
|
||||
</li>
|
||||
|
||||
<li>
|
||||
The <link href="#sec4">fourth section</link> will tell you how to write
|
||||
property set streams - once it is written. Writing is still quite
|
||||
rudimentary in HPSF and you have to understand the <link
|
||||
href="#sec3">third section</link> before you should think about writing
|
||||
properties. Stick to the Javadoc API documentation to find out more about
|
||||
writing property sets!
|
||||
</li>
|
||||
</ol>
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<document>
|
||||
<header>
|
||||
<title>Jakarta POI - HPSF - Java APIs with XML manipulate MS-Format Properties</title>
|
||||
<title>Jakarta POI - HPSF - Java API to Handle Microsoft Format Document Properties</title>
|
||||
<subtitle>Overview</subtitle>
|
||||
<authors>
|
||||
<person name="Rainer Klute" email="klute@apache.org"/>
|
||||
|
@ -12,6 +12,7 @@
|
|||
</header>
|
||||
<body>
|
||||
<section><title>Overview</title>
|
||||
|
||||
<p>Microsoft applications like "Word", "Excel" or "Powerpoint" let the user
|
||||
describe his document by properties like "title", "category" and so on. The
|
||||
application itself adds further information: last author, creation date
|
||||
|
@ -19,7 +20,7 @@
|
|||
streams</strong>. A property set stream is a separate document within a
|
||||
<link href="../poifs/index.html">POI filesystem</link>. We'll call property
|
||||
set streams mostly just "property sets". HPSF is POI's pure-Java
|
||||
implementation to read (and in future to write) property sets.</p>
|
||||
implementation to read and property sets.</p>
|
||||
|
||||
<p>The <link href="how-to.html">HPSF HOWTO</link> describes what a Java
|
||||
application should do to read a property set using HPSF and to retrieve the
|
||||
|
|
|
@ -16,8 +16,9 @@
|
|||
|
||||
<ol>
|
||||
<li>
|
||||
Add writing capability for property sets. Presently property sets can
|
||||
be read only.
|
||||
Improve writing support! We need convenience classes and methods for
|
||||
easily writing summary information streams and document summary
|
||||
information streams.
|
||||
</li>
|
||||
<li>
|
||||
Add codepage support: Presently the bytes making out the string in a
|
||||
|
@ -38,8 +39,7 @@
|
|||
</li>
|
||||
<li>
|
||||
Add WMF to <code>java.awt.Image</code> example code in <link
|
||||
href="thumbnails.html">Thumbnail
|
||||
HOW TO</link>.
|
||||
href="thumbnails.html">Thumbnail HOW TO</link>.
|
||||
</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
|
Loading…
Reference in New Issue