StringIO模块字符串的缓存

时间:2021-03-05 00:55:46

StringIO经常被用来作为字符串的缓存,应为StringIO有个好处,他的有些接口和文件操作是一致的,也就是说用同样的代码,可以同时当成文件操作或者StringIO操作。比如:

import string, os, sys
import StringIO

def writedata(fd, msg):
    fd.write(msg)
    
f = open('aaa.txt', 'w')

writedata(f, "xxxxxxxxxxxx")
f.close()

s = StringIO.StringIO()
writedata(s, "xxxxxxxxxxxxxx")

因为文件对象和StringIO大部分的方法都是一样的,比如read, readline, readlines, write, writelines都是有的,这样,StringIO就可以非常方便的作为"内存文件对象"。

StringIO模块字符串的缓存import string
StringIO模块字符串的缓存import StringIO
StringIO模块字符串的缓存
StringIO模块字符串的缓存s = StringIO.StringIO()
StringIO模块字符串的缓存s.write("aaaa")
StringIO模块字符串的缓存lines = ['xxxxx', 'bbbbbbb']
StringIO模块字符串的缓存s.writelines(lines)
StringIO模块字符串的缓存
StringIO模块字符串的缓存s.seek(0)
StringIO模块字符串的缓存print s.read()
StringIO模块字符串的缓存
StringIO模块字符串的缓存print s.getvalue()
StringIO模块字符串的缓存s.write(" ttttttttt ")
StringIO模块字符串的缓存s.seek(0)
StringIO模块字符串的缓存print s.readlines()
StringIO模块字符串的缓存print s.len

StringIO还有一个对应的c语言版的实现,它有更好的性能,但是稍有一点点的区别,cStringIO没有len和pos属性。(还有,cStringIO不支持Unicode编码)

相关文章