FileDocCategorySizeDatePackage
MutableByteArrayOutputStream.javaAPI DocApache Poi 3.0.11648Mon Jan 01 18:55:34 GMT 2007org.apache.poi.hslf.util

MutableByteArrayOutputStream

public class MutableByteArrayOutputStream extends ByteArrayOutputStream
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

Fields Summary
Constructors Summary
Methods Summary
public intgetBytesWritten()
Return how many bytes we've stuffed in so far

 return -1; 
public voidoverwrite(byte[] b, int startPos)
Write some bytes to an earlier bit of the array

public voidwrite(byte[] b)
Write some bytes to the array

public voidwrite(int b)