解决方案 »

  1.   

    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes them into characters using a specified charset.
      

  2.   

    字节流继承于InputStream OutputStream,字符流继承于InputStreamReader OutputStreamWriter。在java.io包中还有许多其他的流,主要是为了提高性能和使用方便。
      

  3.   

    字节流后面都是  stream.
    字符流后面都是  Reader or Writer.谨记..
      

  4.   

    字节流后面都是  stream. 
    字符流后面都是  Reader or Writer.