FileDocCategorySizeDatePackage
HWPFOutputStream.javaAPI DocApache Poi 3.0.11456Mon Jan 01 18:55:32 GMT 2007org.apache.poi.hwpf.model.io

HWPFOutputStream

public class HWPFOutputStream extends ByteArrayOutputStream

Fields Summary
int
_offset
Constructors Summary
public HWPFOutputStream()

    super();
  
Methods Summary
public intgetOffset()

    return _offset;
  
public voidreset()

    super.reset();
    _offset = 0;
  
public voidwrite(byte[] buf, int off, int len)

    super.write(buf, off, len);
    _offset += len;
  
public voidwrite(int b)

    super.write(b);
    _offset++;