93949596979899
/** * Constructs a channel that writes bytes to the given stream. */ public static WritableByteChannel newChannel(OutputStream out) { return new OutputStreamChannel(out); }