Python-IO编程-StringIO和BytesIO

StringIO

很多时候,数据读写不一定是文件,也可以在内存中读写。

StringIO顾名思义就是在内存中读写str。

要把str写入StringIO,我们需要先先创建一个StringIO,然后,像文件一样写入即可:


>>> from io import StringIO
>>> f = StringIO()
>>> f.write('hello')
5
>>> f.write('')
0
>>> from io import BytesIO
>>> f = BytesIO(b'\xe4\xb4\xad\xe6\x96\x87')
>>> f.read()
b'\xe4\xb4\xad\xe6\x96\x87'
>>>

>>> f.write(' ')1>>> f.write('world')5>>> f.write(f.getvalue())11>>> print(f.getvalue())hello worldhello world>>>

getvalue()方法用于获得写入后的str。


要读取StringIO,可以用一个str初始化StringIO,然后,像读文件一样读取:

>>> from io import StringIO
>>> f = StringIO('Hello!\nhi!\nGoodBye')
>>> while True:
...     s = f.readline()
...     if s =='':
...         break
...     print(s.strip())
...
Hello!
hi!
GoodBye

BytesIO()

StringIO操作的只能是Str,如果要操控二进制数据,就需要使用BytesIO。

BytrsIO()实现了在内存中读写bytes,我们创建一个BytesIO,然后写入一些bytes:

>>> from io import BytesIO
>>> f =BytesIO()
>>> f.write('中文'.encode('utf-8'))
6
>>> print(f.getvalue())
b'\xe4\xb8\xad\xe6\x96\x87'

请注意,写入的不是str,而是经过UTF-8编码的bytes。

和StringIO()类似,可以用一个bytes初始化BytesIO,然后,像读文件一样读取:



猜你喜欢

转载自blog.csdn.net/python_jeff/article/details/80002543