Java

How to Use BufferedWriter In Java1 min read

Java Code:

The java.io.BufferedWriter.write(String str) method writes a string to the writer.




The advantage of using BufferedWriter is that it writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.

Syntax : public class BufferedWriter extends Writer.

Leave a Comment