翼度科技»论坛 编程开发 python 查看内容

Python文件读写、StringIO和BytesIO

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
StringIO和BytesIO

很多时候,数据读写不一定是文件,也可以在内存中读写。StringIO就是在内存中读写str。
要把str写入StringIO,我们需要先创建一个StringIO,然后,像文件一样写入即可:
  1. >>> from io import StringIO
  2. >>> f = StringIO()
  3. >>> f.write('hello')
  4. 5
  5. >>> f.write(' ')
  6. 1
  7. >>> f.write('world!')
  8. 6
  9. >>> print(f.getvalue())
  10. hello world!
复制代码
getvalue()方法用于获得写入后的str。
要读取StringIO,可以用一个str初始化StringIO,然后,像读文件一样读取:
  1. >>> from io import StringIO
  2. >>> f = StringIO('Hello!\nHi!\nGoodbye!')
  3. >>> while True:
  4. ...     s = f.readline()
  5. ...     if s == '':
  6. ...         break
  7. ...     print(s.strip())
  8. #Python小白学习交流群:711312441
  9. Hello!
  10. Hi!
  11. Goodbye!
复制代码
StringIO操作的只能是str,如果要操作二进制数据,就需要使用BytesIO。
BytesIO实现了在内存中读写bytes,我们创建一个BytesIO,然后写入一些bytes:
  1. >>> from io import BytesIO
  2. >>> f = BytesIO()
  3. >>> f.write('中文'.encode('utf-8'))
  4. 6
  5. >>> print(f.getvalue())
  6. b'\xe4\xb8\xad\xe6\x96\x87'
复制代码
注意,写入的不是str,而是经过UTF-8编码的bytes。
和StringIO类似,可以用一个bytes初始化BytesIO,然后,像读文件一样读取:
  1. >>> from io import BytesIO
  2. >>> f = BytesIO(b'\xe4\xb8\xad\xe6\x96\x87')
  3. >>> f.read()
  4. b'\xe4\xb8\xad\xe6\x96\x87'
复制代码
StringIO和BytesIO是在内存中操作str和bytes的方法,使得和读写文件具有一致的接口。

来源:https://www.cnblogs.com/python1111/p/17428661.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具