从 cStringIO 对象创建 Python array.array 对象

发布于 2024-09-24 19:14:15 字数 598 浏览 1 评论 0原文

我想从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

友谊不毕业 2024-10-01 19:14:15

为什么不使用 a.fromstring() ?由于 StringIO 缓冲区完全位于内存中,因此尝试使用文件 api 将位从一个内存位置读取到另一个内存位置没有任何好处。

a = array.array('c')
a.fromstring(s)

如果您出于其他原因使用 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.

a = array.array('c')
a.fromstring(s)

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文