Writes a newline to this writer. A newline is determined by the System property "line.separator". The target writer may or may not be flushed when a newline is written. @throws IOException if an error occurs attempting to write to this writer.
()
| 167 | * if an error occurs attempting to write to this writer. |
| 168 | */ |
| 169 | public void newLine() throws IOException { |
| 170 | write(lineSeparator, 0, lineSeparator.length()); |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * Writes {@code count} characters starting at {@code offset} in |