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"));
}
}
11. 25. ByteArrayInputStream
11. 25. 1.
Convert string into InputStream using ByteArrayInputStream class.