public void | write(int cc)Write the data to the buffer and flush the buffer, if a line
separator is detected.
final byte c = (byte) cc;
if ((c == '\n") || (c == '\r")) {
if (!skip) {
processBuffer();
}
} else {
buffer.write(cc);
}
skip = (c == '\r");
|