buffered Writer
inline fun File.bufferedWriter(charset: Charset = Charsets.UTF_8, bufferSize: Int = DEFAULT_BUFFER_SIZE): BufferedWriter
Content copied to clipboard
Returns a new BufferedWriter for writing the content of this file.
Parameters
buffer Size
necessary size of the buffer.
inline fun OutputStream.bufferedWriter(charset: Charset = Charsets.UTF_8): BufferedWriter
Content copied to clipboard
Creates a buffered writer on this output stream using UTF-8 or the specified charset.