django中下载zip压缩文件

Posted huaibin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django中下载zip压缩文件相关的知识,希望对你有一定的参考价值。

项目需求:需要在列表页面提供下载按钮,下载补丁doc文档,xls表格,版本序列,xxxx.pkg等文件的zip压缩包。

参考链接:https://www.jb51.net/article/135951.htm

django中的views.py中的方法直接调用下面的例子即可。

具体实现:

import os
from django.http import StreamingHttpResponse

def file_down(request, file_path, file_name):
  
# 判断下载文件是否存在 if not os.path.isfile(file_path): return HttpResponse("Sorry but Not Found the File") def file_iterator(file_path, chunk_size=512): """ 文件生成器,防止文件过大,导致内存溢出 :param file_path: 文件绝对路径 :param chunk_size: 块大小 :return: 生成器 """ with open(file_path, mode=rb) as f: while True: c = f.read(chunk_size) if c: yield c else: break try: # 设置响应头 # StreamingHttpResponse将文件内容进行流式传输,数据量大可以用这个方法(.pdf,.mp3,.mp4等等什么样格式的文件都可以下载) response = StreamingHttpResponse(file_iterator(file_path)) # 以流的形式下载文件,这样可以实现任意格式的文件下载 response[Content-Type] = application/octet-stream # Content-Disposition就是当用户想把请求所得的内容存为一个文件的时候提供一个默认的文件名 response[Content-Disposition] = attachment;filename={file_name}{format}.format( file_name=file_name, format=".zip") except: return HttpResponse("Sorry but Not Found the File") # 在这里千万记得return,否则不会出现下载 return response

 

以上是关于django中下载zip压缩文件的主要内容,如果未能解决你的问题,请参考以下文章

如何从服务器端下载 zip 文件到客户端(django 做出反应)

从内存中的 FTP 下载 Zip 文件并解压缩

Django压缩包下载

以 csv 格式下载包含来自多个模型的数据的 zip 文件

Java实现打包压缩文件或文件夹生成zip以实现多文件批量下载

将所有文件压缩为 zip 的 PHP 代码无法正常工作