python StringIO标准库基础学习

时间:2023-03-08 16:12:47

#标准库:StringIO提供类文件API文本缓冲区
#作用:可以处理内存中的文本,有2种不同的实现:cStringIP版本用c编写提高速度,StringIO用python来提供可移植性,与其他字符串连接相比,cStringIO构造大字符串提供了更好的性能
#示例
try:
    from cStringIO import StringIO
except:
    from  StringIO import StringIO
#写入缓冲区
out=StringIO()
out.write('buffer.')
print >>out,'and so this.'
#读写
print out.getvalue()
print out.close()#dirsard buffer
ipt=StringIO('value buffer')
#read from the buffer
print ipt.read()
#这边使用read(),不过也可以使用readlin(),readlines()方法,StringIO类提供了一个seek()方法,读取文本时在缓冲区中跳转,如果使一种向前解析算法,对于回转很有用
#StringIO官方标准地址:https://docs.python.org/2.7/library/stringio.html?highlight=stringio#module-StringIO  and  https://docs.python.org/2.7/library/stringio.html?highlight=stringio#module-cStringIO