You can emulate Output/Input Stream and wrap it by BufferWriter, InputStreamReader, etc. Problem is that maximum size has to be known.
public class ByteBufferInputStream extends InputStream {
private ByteBuffer buffer;
public ByteBufferInputStream(ByteBuffer buffer) {
this.buffer = buffer;
}
@Override
public int read() throws IOException {
if (buffer.position() >= buffer.limit()) {
return -1;
}
return buffer.get();
}
}
public class ByteBufferOutputStream extends OutputStream {
private ByteBuffer buffer;
public ByteBufferOutputStream(ByteBuffer buffer) {
this.buffer = buffer;
}
@Override
public void write(int b) throws IOException {
try {
buffer.put((byte) b);
} catch (BufferOverflowException exp) {
throw new IOException(exp);
}
}
}
ByteBuffer buffer = ByteBuffer.allocate(capacity)
OutputStream output = new ByteBufferOutputStream(buffer);