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

What I want to do is log the output from an inputstream that I go using

org.apache.http.HttpEntity entity = response.getEntity();
org.apache.http.HttpResponse content =entity.getContent();


            //Print the result to the screen for debugging
            //puroposes
            if(Logging.DEBUG) {
                InputStream content =entity.getContent();

                int i;
                StringBuilder b = new StringBuilder();
                while( (i=content.read()) != -1 ) {
                    b.append((char)i);
                }

                Log.d(TAG, b.toString());
            }

Now after I have finished logging, I want to use the exact same stream through an XML parser. The problem is that it tells me that the steam has already been used.

I tried to the use mark() and reset() calls before and after debugging but it didn't work.

share|improve this question

2 Answers

up vote 2 down vote accepted

It depends whether the inputstream that is returned supports it. The default implementation in the InputStream class does nothing, as described in the API. So you can't be sure whether the returned Stream actually supports it. To be sure of this, you should wrap it in a BufferedInputStream, which does supports these methods.

share|improve this answer
this worked, thanks – jax Jul 11 '10 at 5:25

In general mark() and reset() won't work on an arbitrary InputStream. They only work on subclasses like FileInputStream where the underlying data source supports these operations.

For something like a SocketInputStream or a console InputStream, your only option will be to read and buffer the entire stream contents somewhere; e.g. in memory or by writing it to a temporary file.

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.