How to convert Input Stream to String in java


 

How to convert Input Stream to String in java

In this section, you will learn how to convert InputStream into string.

In this section, you will learn how to convert InputStream into string.

How to convert Input Stream to String in java

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.*;

public class ConvertInputStreamToString {
  public static void main(String[] argsthrows IOException {
    InputStream is = new FileInputStream("C:/file.txt");
    StringBuffer buffer = new StringBuffer();
    byte[] b = new byte[4096];
    for (int n; (n = is.read(b)) != -1;) {
      buffer.append(new String(b, 0, n));
    }
    String str = buffer.toString();
    System.out.println(str);
  }
}

Ads