How can I transform a String value into an InputStreamReader?
6 Answers
ByteArrayInputStream also does the trick:
InputStream is = new ByteArrayInputStream( myString.getBytes( charset ) );
Then convert to reader:
InputStreamReader reader = new InputStreamReader(is);
4 Comments
ByteArrayInputStream : Since: JDK1.0 There’s not the slightest reason to assume that this class is “since Java 1.4”. That wrong version number is especially weird as Java 1.4 introduced NIO and it makes little sense to introduce an API and its conceptional successor within the same version.I also found the apache commons IOUtils class , so :
InputStreamReader isr = new InputStreamReader(IOUtils.toInputStream(myString));
6 Comments
new InputStreamReader(IOUtils.toInputStream(myString, "UTF-16"), "UTF-16") would be lossless.String into a byte[] array to convert the bytes back to chars then…Does it have to be specifically an InputStreamReader? How about using StringReader?
Otherwise, you could use StringBufferInputStream, but it's deprecated because of character conversion issues (which is why you should prefer StringReader).
Comments
Same question as @Dan - why not StringReader ?
If it has to be InputStreamReader, then:
String charset = ...; // your charset
byte[] bytes = string.getBytes(charset);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
InputStreamReader isr = new InputStreamReader(bais);
Are you trying to get a) Reader functionality out of InputStreamReader, or b) InputStream functionality out of InputStreamReader? You won't get b). InputStreamReader is not an InputStream.
The purpose of InputStreamReader is to take an InputStream - a source of bytes - and decode the bytes to chars in the form of a Reader. You already have your data as chars (your original String). Encoding your String into bytes and decoding the bytes back to chars would be a redundant operation.
If you are trying to get a Reader out of your source, use StringReader.
If you are trying to get an InputStream (which only gives you bytes), use apache commons IOUtils.toInputStream(..) as suggested by other answers here.
Comments
You can try Cactoos:
InputStream stream = new InputStreamOf(str);
Then, if you need a Reader:
Reader reader = new ReaderOf(stream);