从 cStringIO 对象创建 Python array.array 对象
我想从 cStringIO
对象创建一个 array.array
对象:
import cStringIO, array
s = """
<several lines of text>
"""
f = cStringIO.StringIO(s)
a = array.array('c')
a.fromfile(f, len(s))
但出现以下异常:
回溯(最近一次调用最后一次): 文件“./myfile.py”,第 22 行,在
中 a.fromfile(f, len(s)) 类型错误:arg1 必须是打开的文件
看起来 array.array()
正在检查第一个参数的 type()
,这使得它与 cStringIO
不兼容(并且 >StringIO
就此而言)。有什么办法可以让这个工作吗?
I want to create an array.array
object from a cStringIO
object:
import cStringIO, array
s = """
<several lines of text>
"""
f = cStringIO.StringIO(s)
a = array.array('c')
a.fromfile(f, len(s))
But I get the following exception:
Traceback (most recent call last): File "./myfile.py", line 22, in <module> a.fromfile(f, len(s)) TypeError: arg1 must be open file
It seems like array.array()
is checking the type()
of the first argument, which makes it incompatible with cStringIO
(and StringIO
for that matter). Is there any way to make this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 a.fromstring() ?由于 StringIO 缓冲区完全位于内存中,因此尝试使用文件 api 将位从一个内存位置读取到另一个内存位置没有任何好处。
如果您出于其他原因使用 StringIO(作为内存缓冲区,或之前作为文件),那么您可以使用 StringIO 的 getvalue() 函数来获取字符串值。
Why not use a.fromstring()? Since the StringIO buffer is entirely in memory, there is no benefit to trying to use a file api to read the bits from one memory location to another.
If you are using StringIO for another reason (as a memory buffer, or as a file earlier on), then you can use StringIO's getvalue() function to get the string value.