Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a string:

String exampleString = "example";

How do I convert this to an InputStream?

share|improve this question

3 Answers

up vote 64 down vote accepted

Like this:

InputStream stream = new ByteArrayInputStream(exampleString.getBytes("UTF-8"));

Note that this assumes that you want an InputStream that is a stream of bytes that represent your original string encoded as UTF-8.

share|improve this answer
1  
StandardCharsets.UTF_8 – martini Apr 23 at 18:45

I find that using Apache Commons IO makes my life much easier.

String source = "This is the source of my input stream";
InputStream in = IOUtils.toInputStream(source);

You may find that the library also offer many other shortcuts to commonly done tasks that you may be able to use in your project.

share|improve this answer
They used new ByteArrayInputStream(exampleString.getBytes("UTF-8")). So it will be optimized way to use InputStream stream = new ByteArrayInputStream(exampleString.getBytes("UTF-8")); – Pankaj Kumar Aug 24 '11 at 12:34
1  
@PankajKumar: Java's JIT compiler is more than able to inline this. – Andrew White Jul 20 '12 at 12:14

You could use a StringReader and convert the reader to an input stream using the solution in this other stackoverflow post.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.