How can I transform a String value into an InputStreamReader?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
ByteArrayInputStream also does the trick (since Java 1.4)
|
|||||||||||||||||
|
|
Cool , thank you very much.
I also found the apache commons
|
|||||||||||||||
|
|
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). |
|||
|
|
|
Same question as @Dan - why not StringReader ? If it has to be InputStreamReader, then:
|
|||||
|