共计 927 个字符,预计需要花费 3 分钟才能阅读完成。
StringIO
很多时候,数据读写不一定是文件,也可以在内存中读写。
StringIO
顾名思义就是在内存中读写str
。
要把 str
写入StringIO
,我们需要先创建一个StringIO
,然后,像文件一样写入即可:
>>> from io import StringIO
>>> f = StringIO()
>>> f.write('hello')
5
>>> f.write(' ')
1
>>> f.write('world!')
6
>>> print(f.getvalue())
hello 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
。
BytesIO
实现了在内存中读写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
,然后,像读文件一样读取:
>>> from io import BytesIO
>>> f = BytesIO(b'\xe4\xb8\xad\xe6\x96\x87')
>>> f.read()
b'\xe4\xb8\xad\xe6\x96\x87'
小结
StringIO
和 BytesIO
是在内存中操作 str
和bytes
的方法,使得和读写文件具有一致的接口。
参考源码
do_stringio.py
do_bytesio.py
正文完
星哥玩云-微信公众号