how to create inputstream in java from string code example
Example: java create inputstream from string
InputStream targetStream = new ByteArrayInputStream("your string".getBytes());
InputStream targetStream = new ByteArrayInputStream("your string".getBytes());