What is the diff between the Reader/Writer class hierarchy and the InputStream/OutputStream Class?
The Reader/Writer class hierarchy is character-oriented, and the InputStream/OutputStream class hierarchy is byte-oriented. Most of the functionality available for byte streams is also provided for character streams. The methods for character streams generally accept...
Recent Comments