Class MemoryPackagePartOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.poi.openxml4j.opc.internal.MemoryPackagePartOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public final class MemoryPackagePartOutputStream extends java.io.OutputStream
Build an output stream for MemoryPackagePart.
-
-
Constructor Summary
Constructors Constructor Description MemoryPackagePartOutputStream(MemoryPackagePart part)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
Close this stream and flush the content.void
flush()
Flush this output stream.void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Constructor Detail
-
MemoryPackagePartOutputStream
public MemoryPackagePartOutputStream(MemoryPackagePart part)
-
-
Method Detail
-
write
public void write(int b)
- Specified by:
write
in classjava.io.OutputStream
-
close
public void close() throws java.io.IOException
Close this stream and flush the content.- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
- See Also:
flush()
-
flush
public void flush() throws java.io.IOException
Flush this output stream. This method is called by the close() method. Warning : don't call this method for output consistency.- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
- Throws:
java.io.IOException
- See Also:
close()
-
write
public void write(byte[] b, int off, int len)
- Overrides:
write
in classjava.io.OutputStream
-
write
public void write(byte[] b) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-