> [Richard O. Hammer] > I am trying to get an InputStream from a String. Can somebody tell me > the easy way?
heh, this came up at work when someone was using a java.io.StringBufferInputStream - the patch I committed into our cvs was to replace it with a ByteArrayInputStream(string.getBytes()) - course, this is assuming you need to stick with the stream paradigm and can't or don't want to switch to readers/writers :) _______________________________________________ Juglist mailing list [EMAIL PROTECTED] http://trijug.org/mailman/listinfo/juglist_trijug.org
