Java I/O streams; what are the differences?

后端 未结 9 1247
死守一世寂寞
死守一世寂寞 2020-12-12 18:44

java.io has many different I/O streams, (FileInputStream, FileOutputStream, FileReader, FileWriter, BufferedStreams... etc.) and I am confused in determining th

相关标签:
9条回答
  • 2020-12-12 18:51

    Byte streams are mostly and widely used stream type in java 1.0 for both character and for byte. After java 1.0 it was deprecated and character streams plays a important role. ie., for example

    BufferedReader will get the character from the source, and its constructor looks like BufferedReader(Reader inputReader)..

    Here Reader is an abstract class and the once of its concrete classes are InputStreamReader, which will converts bytes into characters and take input from the keyboard(System.in)...

    BufferedReader : Contains internal Buffer that will read characters from the stream. Internal counter keeps track of next character to be supplied to the buffer thru read(). InputStreamReader will takes input as bytes and converts internally into characters.

    0 讨论(0)
  • 2020-12-12 18:53

    Streams: one byte at a time. Good for binary data.

    Readers/Writers: one character at a time. Good for text data.

    Anything "Buffered": many bytes/characters at a time. Good almost all the time.

    0 讨论(0)
  • 2020-12-12 18:59

    The specialisations you mention are specific types used to provide a standard interface to a variety of data sources. For example, a FileInputStream and an ObjectInputStream will both implement the InputStream interface, but will operate on Files and Objects respectively.

    0 讨论(0)
  • 2020-12-12 19:01

    When learning Java I made this mental scheme about java.io:

    Streams

    • byte oriented stream (8 bit)
    • good for binary data such as a Java .class file
    • good for "machine-oriented" data

    Readers/Writers

    • char (utf-16) oriented stream (16 bit)
    • good for text such as a Java source
    • good for "human-oriented" data

    Buffered

    • always useful unless proven otherwise
    0 讨论(0)
  • 2020-12-12 19:03

    This is probably the most thorough overview of the various streams, Reader's and Writer's in the Java IO API:

    http://tutorials.jenkov.com/java-io/overview.html

    It's part of a larger Java IO tutorial covering both byte and charater based streams.

    It also covers streams that are used for reading and writing raw numeric data, like int's float's etc.

    It also covers streams used for parsing like the PushbackInputStream and the PushbackReader.

    0 讨论(0)
  • 2020-12-12 19:08

    Java input and output is defined in terms of an abstract concept called a “stream”, which is a sequence of data. There are 2 kinds of streams.

    • Byte streams (8 bit bytes) Æ Abstract classes are: InputStream and OutputStream
    • Character streams (16 bit UNICODE) Æ Abstract classes are: Reader and Writer

    java.io.* classes use the decorator design pattern. The decorator design pattern attaches responsibilities to objects at runtime. Decorators are more flexible than inheritance because the inheritance attaches responsibility to classes at compile time. The java.io.* classes use the decorator pattern to construct different combinations of behavior at runtime based on some basic classes.

    from the book Java/J2EE Job Interview Companion By K.Arulkumaran & A.Sivayini

    0 讨论(0)
提交回复
热议问题