| java.io.ByteArrayOutputStream org.apache.poi.hslf.util.MutableByteArrayOutputStream
MutableByteArrayOutputStream | public class MutableByteArrayOutputStream extends ByteArrayOutputStream (Code) | | This class doesn't work yet, but is here to show the idea of a
ByteArrayOutputStream where you can track how many bytes you've
already written, and go back and write over a previous part of the stream
author: Nick Burch |
getBytesWritten | public int getBytesWritten()(Code) | | Return how many bytes we've stuffed in so far
|
overwrite | public void overwrite(byte[] b, int startPos)(Code) | | Write some bytes to an earlier bit of the array
|
write | public void write(byte[] b)(Code) | | Write some bytes to the array
|
write | public void write(int b)(Code) | | |
|
|