Package org.apache.poi.hpsf
Class HPSFPropertiesOnlyDocument
- java.lang.Object
-
- org.apache.poi.POIDocument
-
- org.apache.poi.hpsf.HPSFPropertiesOnlyDocument
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
public class HPSFPropertiesOnlyDocument extends POIDocument
A version ofPOIDocument
which allows access to the HPSF Properties, but no other document contents. Normally used when you want to read or alter the Document Properties, without affecting the rest of the file
-
-
Constructor Summary
Constructors Constructor Description HPSFPropertiesOnlyDocument(POIFSFileSystem fs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write()
Write out to the currently open file the properties changes, but nothing elsevoid
write(java.io.File newFile)
Write out, with any properties changes, but nothing elsevoid
write(java.io.OutputStream out)
Write out, with any properties changes, but nothing else-
Methods inherited from class org.apache.poi.POIDocument
close, createInformationProperties, getDirectory, getDocumentSummaryInformation, getEncryptionInfo, getSummaryInformation
-
-
-
-
Constructor Detail
-
HPSFPropertiesOnlyDocument
public HPSFPropertiesOnlyDocument(POIFSFileSystem fs)
-
-
Method Detail
-
write
public void write() throws java.io.IOException
Write out to the currently open file the properties changes, but nothing else- Specified by:
write
in classPOIDocument
- Throws:
java.io.IOException
- thrown on errors writing to the file
-
write
public void write(java.io.File newFile) throws java.io.IOException
Write out, with any properties changes, but nothing else- Specified by:
write
in classPOIDocument
- Parameters:
newFile
- The new File to write to.- Throws:
java.io.IOException
- thrown on errors writing to the file
-
write
public void write(java.io.OutputStream out) throws java.io.IOException
Write out, with any properties changes, but nothing else- Specified by:
write
in classPOIDocument
- Parameters:
out
- The stream to write to.- Throws:
java.io.IOException
- thrown on errors writing to the stream
-
-