public interface BinaryOutput
void write(int value)
throws IOException
value - the byte to write (lower 8 bits)IOException - if I/O error occurredvoid write(byte[] data,
int offset,
int length)
throws IOException
data - the array to read bytes fromoffset - the offset in supplied array to start reading fromlength - the number of bytes to read (exactly)IOException - if I/O error occurred (for example - if number of actually written bytes is not equal to length)Copyright © 2016. All rights reserved.