It sounds like a very silly question but can anyone explain me about Input stream and output stream. I remain confused about when do we need input stream and when we need output stream? An explanation with some code snippet will be great. I just need to figure out their difference and usage.
|
|
The goal of
Here's some sample code. It assumes the
|
||||
|
|
|
InputStream is used for reading, OutputStream for writing. The are connected as decorators to one another such that you can read/write all different types of data from all different types of sources. For example you can write primitive Data to a file:
To read the written contents:
You can use other types of streams to enhance the reading/writing. For example you can introduce a buffer for efficiency:
You can write other data such a objects:
You can read from other different input sources:
For most input streams there is an output stream, also. You can define your own streams to reding/writing special things and there are complex streams for reading complex things (for example there are Streams for reding/writing ZIP format). |
|||
|
|
|
you read from an InputStream and write to an OutputStream. for example, say you want to copy a file. You would create a FileInputStream to read from the source file and a FileOutputStream to write to the new file. If your data is a character stream, you could use a FileReader instead of an InputStream and a FileWriter instead of an OutputStream if you prefer.
|
|||||||||||
|
|
OutputStream is an abstract class that represents writing output. There are many different OutputStream classes, and they write out to certain things (like the screen, or Files, or byte arrays, or network connections, or etc). InputStream classes access the same things, but they read data in from them. Here is a good basic example of using FileOutputStream and FileInputStream to write data to a file, then read it back in. |
|||
|
|
|
Here is an extensive Java IO tutorial explaining everything you need to know about InputStream, OutputStream, Reader, Writer, and the many, many other classes in the Java IO API. |
|||
|
|