I can't seem to determine any difference between InputStreamReader and FileReader besides the way the two are initialized. Is there any benefit to using one or the other? Most other articles cover FileInputStream vs InputStreamReader, but I am contrasting with FileReader instead. Seems to me they both have the same purpose.
|
|
|||
|
|
|
First, Second, In short, forget that |
|||||||
|
|
FileReader extends InputStreamReader. The only differences is that FileReader has constructors which assume you are reading from a file such as I suggest you have a look at the source for FileReader to know more. |
|||||||||
|
|
FileReader reads character from a file in the file system. InputStreamReader reads characters from any kind of input stream. The stream cound be a FileInputStream, but could also be a stream obtained from a socket, an HTTP connection, a database blob, whatever. I usually prefer using an InputStreamReader wrapping a FileInputStream to read from a file because it allows specifying a specific character encoding. |
|||
|
|