Input/Output Stream in java
input/output are the two major processes in any application development. java follows the stream based input/output. A stream is a channel through which data will be transmitted. example:- Advantages of stream based I/O over Normal I/O:- Abstraction:- Streams hides the internal complexity of I/O. Flexibility:- Streams provides a flexibility to be used in the program according to the requirement. Efficiency:- Streams also performs the additional operations onto the data so stream based I/O always be effective over the normal I/O. Their are two types of streams in java- 1:- Byte Stream:- it follows the 8 bit sequence. 2:- Character Stream:- it follows the 16 bit sequence. java.io package provides classes known as Stream classes whose objects are considered as the stream in the java applications. InputStream & OutputStr...
Comments
Post a Comment