>From: Richard O. Hammer [mailto:[EMAIL PROTECTED] >I am trying to get an InputStream from a String. Can somebody tell me >the easy way?
Here's one way: String myStr; ByteArrayInputStream s = new ByteArrayInputStream(myStr.getBytes()); _______________________________________________ Juglist mailing list [EMAIL PROTECTED] http://trijug.org/mailman/listinfo/juglist_trijug.org
