通过接口返回二进制流数据

import StringIO
class ImplementOutIo(Handler):
   def get():
   	 filepath ="/home/bolome/qa_test/bolo-server/internal/bin/jiji.zip"
   	 f = open(filepath, 'rb')
   	 # 打开文件, 将文件读进流
   	 fio = StringIO.StringIO(f.read())
   	 # 设置服务器返回头, 定义文件返回格式
   	 self.set_header('Content-Type', 'application/octet-stream')
   	 # 定义文件返回命名
   	 self.set_header("Content-Disposition", 'attachment;filename=will.zip')
   	 # 返回bytes
   	 self.write(fio.getvalue())
   
   	# 如果需要解压文件
   	fb = zipfile.ZipFile(file=fio)

你可能感兴趣的:(通过接口返回二进制流数据)