之前我们所说的都是读写真正的文件。其实我们也可以在内存中虚拟一个文件进行读写。Python给咱们提供的官方module有io.StringIO
和io.BytesIO
.
io.StringIO
String IO用于在内存在读写字符串。
StringIO可以传入一个字符初始化。例如
string = StringIO("This is Demo")
例如:
from io import StringIO
s = StringIO()
s.write("Yes\nYEs")
s.seek(0)
# 将指针拨回到开始位置,否则将会读取不到任何东西
content = s.read()
print content
StringIO创建的是一个file-like object,拥有File Object的所有方法。StringIO还有两个特殊的方法,就是getvalue()
方法和close()
方法。
getvalue()方法用于获取StringIO中写入的内容
close()方法关闭StringIO,释放内存。
io.BytesIO
StringIO只能处理字符串类型的数据,BytesIO可以用于处理二进制类型的数据。
BytesIO的用法与StringIO类似。
StringIO.StringIO
在搜索文档的时候,发现在StringIO下也有一个StringIO,而且两者非常类似。所有google了一下。在stackoverflow有一个回答:
回答的原文链接:http://stackoverflow.com/ques...
An in-memory stream for unicode text. It inherits TextIOWrapper.
This module implements a file-like class, StringIO, that reads and writes a string buffer (also known as memory files).
io.StringIO is a class. It handles Unicode. It reflects the preferred Python 3 library structure.StringIO.StringIO is a class. It handles strings. It reflects the legacy Python 2 library structure.
What should be preferred?
Always move forward toward the new library organization. The io.open should be used to replace the built-in Unicode-unaware open.Forward. Move forward.
大意就是StringIO是python2的遗产,后续会被io.StringIO取代.
建议使用io.StringIO.
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。