Java I/O How to - Convert string into InputStream for reading








Question

We would like to know how to convert string into InputStream for reading.

Answer

 /*from  w  ww  . j  a  v a 2  s .  com*/
import java.io.ByteArrayInputStream;
import java.io.InputStream;

public class Main {
  public static void main(String[] args)throws Exception {
    String text = "Converting String to InputStream Example";
    InputStream is = new ByteArrayInputStream(text.getBytes("UTF-8"));
  }
}