ASP.NET Web Api 2实现多文件打包并下载文件的实例
最近由于工作和个人事务,站点也好久没更新了,但这并不影响我对.net的热情。站点的更新工作还是得想办法抽时间来完成的。
今天利用中午的时间来写一篇关于asp.net web api下载文件的文章,之前我也写过类似的文章,请见:《asp.net(c#) web api通过文件流下载文件的实例》
本文以这篇文章的基础,提供了bytearraycontent的下载以及在下载多个文件时实现在服务器对多文件进行压缩打包后下载的功能。
关于本文中实现的在服务器端用.net压缩打包文件功能的过程中,使用到了一个第方类库:dotnetzip,具体的使用将在正文中涉及。好了,描述了这么多前言,下面我们进入本文示例的正文。
1.首先创建名为:webapidownload的web api 项目(c#);
2.接着新建一个空的控制器,命名为:downloadcontroller;
3.创建一些打包文件和存放临时文件的文件夹(downloads),具体请看本文最后提供的示例项目代码
4.打开nuget程序包管事器,搜索dotnetzip,如下图:
搜索到dotnetzip安装包后,进行安装,以便用于本项目将要实现多文件打包压缩的功能,如下图:
安装完成dotnetzip包后,我们就可以退出nuget程序包管理器了,因为本项目为示例项目,不需再添加其他的包。
5.在models文件夹下创建一个示例数据的类,名为:demodata,其中的成员和实现如下:
using system.collections.generic; namespace webapidownload.models { public class demodata { public static readonly list<list<string>> contacts = new list<list<string>>(); public static readonly list<string> file1 = new list<string> { "f_1_test_1@example.com", "f_1_test_2@example.com", "f_1_test_3@example.com", "f_1_test_4@example.com", "f_1_test_5@example.com" }; public static readonly list<string> file2 = new list<string> { "f_2_test_1@example.com", "f_2_test_2@example.com", "f_2_test_3@example.com", "f_2_test_4@example.com", "f_2_test_5@example.com" }; public static readonly list<string> file3 = new list<string> { "f_3_test_1@example.com", "f_3_test_2@example.com", "f_3_test_3@example.com", "f_3_test_4@example.com", "f_3_test_5@example.com" }; public static list<list<string>> getmultiple { get { if (contacts.count <= 0) { contacts.add(file1); contacts.add(file2); contacts.add(file3); } return contacts; } } } }
6.到这里,我们的准备工作基本做得差不多了,最后我们只需要在downloadcontroller控制器中实现两个action,一个为:downloadsingle(提供下载单个文件的功能),另一个为:downloadzip(提供打包压缩多个文件并下载的功能)。具体的downloadcontroller完整代码如下:
using system.linq; using system.net.http; using system.text; using system.web.http; using ionic.zip; using webapidownload.models; using system; using system.io; using system.net; using system.net.http.headers; using system.threading; using system.web; namespace webapidownload.controllers { [routeprefix("download")] public class downloadcontroller : apicontroller { [httpget, route("single")] public httpresponsemessage downloadsingle() { var response = new httpresponsemessage(); //从list集合中获取byte[] var bytes = demodata.file1.select(x => x + "\n").selectmany(x => encoding.utf8.getbytes(x)).toarray(); try { var filename = string.format("download_single_{0}.txt", datetime.now.tostring("yyyymmddhhmmss")); var content = new bytearraycontent(bytes); response.content = content; response.content.headers.contentdisposition = new contentdispositionheadervalue("attachment") { filename = filename }; response.content.headers.contenttype = new mediatypeheadervalue("application/octet-stream"); } catch (exception ex) { response.statuscode = httpstatuscode.internalservererror; response.content = new stringcontent(ex.tostring()); } return response; } [httpget, route("zip")] public httpresponsemessage downloadzip() { var response = new httpresponsemessage(); try { var zipfilename = string.format("download_compressed_{0}.zip", datetime.now.tostring("yyyymmddhhmmss")); var downloaddir = httpcontext.current.server.mappath($"~/downloads/download"); var archive = $"{downloaddir}/{zipfilename}"; var temp = httpcontext.current.server.mappath("~/downloads/temp"); // 清空临时文件夹中的所有临时文件 directory.enumeratefiles(temp).tolist().foreach(file.delete); cleardownloaddirectory(downloaddir); // 生成新的临时文件 var counter = 1; foreach (var c in demodata.getmultiple) { var filename = string.format("each_file_{0}_{1}.txt", counter, datetime.now.tostring("yyyymmddhhmmss")); if (c.count <= 0) { continue; } var docpath = string.format("{0}/{1}", temp, filename); file.writealllines(docpath, c, encoding.utf8); counter++; } thread.sleep(500); using (var zip = new zipfile()) { // make zip file zip.adddirectory(temp); zip.save(archive); } response.content = new streamcontent(new filestream(archive, filemode.open, fileaccess.read)); response.content.headers.contentdisposition = new contentdispositionheadervalue("attachment") { filename = zipfilename }; response.content.headers.contenttype = new mediatypeheadervalue("application/octet-stream"); } catch (exception ex) { response.statuscode = httpstatuscode.internalservererror; response.content = new stringcontent(ex.tostring()); } return response; } private void cleardownloaddirectory(string directory) { var files = directory.getfiles(directory); foreach (var file in files) { try { file.delete(file); } catch { } } } } }
到此,本示例的实现代码部分就完成了,如果我们此时打开地址:http://localhost:63161/download/single,浏览器会弹出保存文件的提示窗口,如下:
保存此文件后,打开它我们会看到我们的示例数据已被保存到本地了,如下:
同样的,下载压缩文件你只需要访问地址:localhost:63161/download/zip 即可,笔者就不再演示了。
最后,附上本示例项目的完整源代码,点击这里下载。
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持。