IO之StringIO和BytesIO

StringIO和BytesIO是在内存中操作str和bytes的方法,使得和读写文件具有一致的接口。

StringIO就是在内存中创建的file-like Object,常用作临时缓冲。

要把str写入StringIO,我们需要先创建一个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

>>> 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

BytesIO

>>> from io import BytesIO

>>> f = BytesIO()

>>> f.write('中文'.encode('utf-8'))      ///encodestr变为utf-8类型bytes

6

>>> print(f.getvalue())

b'\xe4\xb8\xad\xe6\x96\x87'

请注意,写入的不是str,而是经过UTF-8编码的bytes(还分为UTF-8编码的文本文件)

 

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

BytesIO

>>> from io import StringIO

>>> f = BytesIO(b'\xe4\xb8\xad\xe6\x96\x87')

>>> f.read()

b'\xe4\xb8\xad\xe6\x96\x87'

bytes类型的数据用带b前缀的单引号或双引号表示

同时bytes还分为ASCIIutf-8两种


你可能感兴趣的:(IO之StringIO和BytesIO)