Writer
Writer is an abstract class for writing streams of characters in Java. It is the superclass for all classes that write character output, such as FileWriter, BufferedWriter, PrintWriter, etc.It is the character-based counterpart of OutputStream and handles text data efficiently across platforms with Unicode support. Commonly Used Methods Simple Program – Writing to a File …