InputStreamReader is class for turning a byte Stream into a character Stream.
Data read from the source input stream is converted into characters by either
a default or provided character converter. By default, the encoding is
assumed to ISO8859_1. The InputStreamReader contains a buffer of bytes read
from the source input stream and converts these into characters as needed.
The buffer size is 8K.