I'm not used to working with streams in Java - how do I create an InputStream from a String?
|
|
Here you go:
Update For multi-byte support use (thanks to Aaron Waibel's comment):
Please see ByteArrayInputStream manual. It is safe to use a charset argument in String#getBytes(charset) method above. |
|||||||||||
|
|
You could do this:
Note the
|
||||
|
|
|
Perhaps you want |
||||
|
Instead of CharSet.forName, using com.google.common.base.Charsets from Google's Guava (http://code.google.com/p/guava-libraries/wiki/StringsExplained#Charsets) is is slightly nicer:
Which CharSet you use depends entirely on what you're going to do with the InputStream, of course. |
|||
|
|