我需要将一个大对象(比如一个文件对象)分成4kb大小的块来通过我的客户端 - 服务器应用程序中的套接字发送,但我无法理解如何。我正在使用python。
答案 0 :(得分:0)
with open(path-to-file, "rb") as fi:
buf = fi.read(4096)
while (buf):
send(buf)
buf = fi.read(4096)
其中send()是一种实际发送4K数据块的方法