Reads in all characters from a file and writes them. Assumes native encoding. @param file the file to read. @return this writer.
(File file)
| 484 | * @return this writer. |
| 485 | */ |
| 486 | public HTMLWriter html(File file) |
| 487 | { |
| 488 | return html(file, Charset.defaultCharset()); |
| 489 | } |
| 490 | |
| 491 | /** |
| 492 | * Reads in all characters from a file and writes them. |
no test coverage detected