我这样处理你看行吗? 看上去得再双缓冲来区分边界字节串的解析。
chunk = bytearray()
while True:
chunk = bytearray(f.read(1024))
chunk_length = len(chunk)
if not chunk:
break
if chunk[-1] != 'N' and chunk[2:-1] != 'ON' and chunk[-3:-1] != 'HON' and and chunk[-4:-1] = 'THON'
and chunk[-5:-1] = 'YTHON'
m.write(chunk)
m.close()
f.close()
【 在 xxxss 的大作中提到: 】
: 读完一片之后指针往回挪5字节,再读下一片
--
FROM 124.78.12.*