Class ArchiveEntryOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.eclipse.birt.core.archive.RAOutputStream
-
- org.eclipse.birt.core.archive.compound.ArchiveEntryOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class ArchiveEntryOutputStream extends RAOutputStream
An OutputStream wraper for RandomAccessStreamImpl.
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]
buffer
protected int
buffer_offset
protected int
buffer_size
protected ArchiveEntry
entry
the stream item
-
-
-
Field Detail
-
entry
protected ArchiveEntry entry
the stream item
-
buffer
protected byte[] buffer
-
buffer_offset
protected int buffer_offset
-
buffer_size
protected int buffer_size
-
-
Method Detail
-
getOffset
public long getOffset() throws java.io.IOException
- Specified by:
getOffset
in classRAOutputStream
- Throws:
java.io.IOException
-
seek
public void seek(long localPos) throws java.io.IOException
- Specified by:
seek
in classRAOutputStream
- Throws:
java.io.IOException
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
writeInt
public void writeInt(int value) throws java.io.IOException
- Specified by:
writeInt
in classRAOutputStream
- Throws:
java.io.IOException
-
writeLong
public void writeLong(long value) throws java.io.IOException
- Specified by:
writeLong
in classRAOutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
length
public long length() throws java.io.IOException
- Specified by:
length
in classRAOutputStream
- Throws:
java.io.IOException
-
-