In this section, you will learn how to convert InputStream into string.
In this section, you will learn how to convert InputStream into string.The InputStream class is the base class of all input streams in the Java IO API. It is used for reading byte based data, one byte at a time. In this section, you will learn how to convert InputStream into string.
Description of code:
Since class InputStream is super class of the FileInputStream so we can store file into InputStream by taking the file through FileInputStream. The read() method of an InputStream class contains the byte value and returns an int. If the read() method returns -1, there is no more data to read in the stream. This value is stored into the StringBuffer as a string which will then converted into string.
Here is the code:
import java.io.*;
|