super(out);
// carriage return, linefeed, and tab if (b == '\n" || b == '\r" || b == '\t") out.write(b); // non-printing characters else if (b < 32 || b > 126) out.write('?"); // printing, ASCII characters else out.write(b);
for (int i = offset; i < offset+length; i++) { this.write(data[i]); }