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

Using Python2.7 version. Below is my sample code.

import StringIO
import sys

buff = StringIO.StringIO()
buff.write("hello")
print buff.read()

in the above program, read() returns me nothing where as getvalue() returns me "hello". Can anyone help me out in fixing the issue? I need read() because my following code involves reading "n" bytes.

share|improve this question
there's no function named read() in stringIO – hjpotter92 Apr 22 '12 at 5:59
@ChasingDeath: Yes there is. Try dir(StringIO.StringIO). – Joel Cornett Apr 22 '12 at 6:02
yeah StringIO makes a file like object for strings so of course there would be read() – jamylak Apr 22 '12 at 6:44

1 Answer

You need to reset the buffer position to the beginning. You can do this by doing buff.seek(0).

Every time you read or write to the buffer, the position is advanced by one. Say you start with an empty buffer.

The buffer value is "", the buffer pos is 0. You do buff.write("hello"). Obviously the buffer value is now hello. The buffer position, however, is now 5. When you call read(), there is nothing past position 5 to read! So it returns an empty string.

share|improve this answer
1  
Thanks, it worked. – raj Apr 22 '12 at 6:23

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.