Showing posts with label inputstream. Show all posts
Showing posts with label inputstream. Show all posts

Monday, 25 April 2011

Turn String into InputStream

import java.io.*;

public InputStream stringToStream(String s) {
return new ByteArrayInputStream(s.getBytes());
}