Here you can find the source of getInputStream(String str)
public static InputStream getInputStream(String str)
//package com.java2s; import java.io.ByteArrayInputStream; import java.io.InputStream; public class Main { public static InputStream getInputStream(String str) { InputStream inputStream = new ByteArrayInputStream(str.getBytes()); return inputStream; }// w w w. ja v a 2 s . co m }