时间:2021-05-22
本文实例为大家分享了Django下完成文件上传和下载功能的具体代码,供大家参考,具体内容如下
一、文件上传
Views.py
def upload(request): if request.method == "POST": # 请求方法为POST时,进行处理 myFile = request.FILES.get("myfile", None) # 获取上传的文件,如果没有文件,则默认为None if not myFile: return HttpResponse("no files for upload!") # destination=open(os.path.join('upload',myFile.name),'wb+') destination = open( os.path.join("你的文件存放地址", myFile.name), 'wb+') # 打开特定的文件进行二进制的写操作 for chunk in myFile.chunks(): # 分块写入文件 destination.write(chunk) destination.close() return HttpResponse("upload over!") else: file_list = [] files = os.listdir('D:\python\Salary management system\django\managementsystem\\file') for i in files: file_list.append(i) return render(request, 'upload.html', {'file_list': file_list})urls.py
url(r'download/$',views.download),upload.html
<div class="container-fluid"> <div class="row"> <form enctype="multipart/form-data" action="/upload_file/" method="POST"> <input type="file" name="myfile"/> <br/> <input type="submit" value="upload"/> </form> </div></div>页面显示
二、文件下载
Views.py
from django.http import HttpResponse,StreamingHttpResponsefrom django.conf import settings def download(request): filename = request.GET.get('file') filepath = os.path.join(settings.MEDIA_ROOT, filename) fp = open(filepath, 'rb') response = StreamingHttpResponse(fp) # response = FileResponse(fp) response['Content-Type'] = 'application/octet-stream' response['Content-Disposition'] = 'attachment;filename="%s"' % filename return response fp.close()HttpResponse会直接使用迭代器对象,将迭代器对象的内容存储城字符串,然后返回给客户端,同时释放内存。可以当文件变大看出这是一个非常耗费时间和内存的过程。
而StreamingHttpResponse是将文件内容进行流式传输,StreamingHttpResponse在官方文档的解释是:
The StreamingHttpResponse class is used to stream a response from Django to the browser. You might want to do this if generating the response takes too long or uses too much memory.
这是一种非常省时省内存的方法。但是因为StreamingHttpResponse的文件传输过程持续在整个response的过程中,所以这有可能会降低服务器的性能。
urls.py
url(r'^upload',views.upload),以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传和下载功能的实现,重点在文件上传 对于文件上传,浏览器在上传
本文实例为大家分享了Django实现文件上传下载的具体代码,供大家参考,具体内容如下一、django实现文件下载(1)、后台接口如果从服务器直接将文件路径传给浏
Django中上传文件方式。如何实现文件上传功能?1创建项目uploadfile:创建app:front项目设置INSTALLED_APPS中添加'front'
在Python中可以使用paramiko模块中的sftp登陆远程主机,实现上传和下载功能。1.功能实现根据输入参数判断是文件还是目录,进行上传和下载本地参数lo
最近的项目中用到了文件的上传和下载功能,我觉着这个功能比较重要,因此特意把它提取出来自己进行了尝试。下面就是springMVC配置环境实现文件上传和下载的具体步