Reader
Reader is an abstract class in Java used for reading character streams. It is the base class for all classes that read character data, such as BufferedReader, FileReader, StringReader, etc.It plays the character-based equivalent of the InputStream, which deals with byte-based streams. Commonly Used Methods Simple Program – Read from a File Using FileReader Read …