cnblogs/dcrenl/ASP.netMVC文件下载的几种方法.html

147 lines
7.8 KiB
HTML
Raw Normal View History

2024-09-24 12:43:01 +08:00
<p>第一种:最简单的超链接方法,<a>标签的href直接指向目标文件地址这样容易暴露地址造成盗链这里就不说了</a></p>
<p>第二种:后台下载</p>
<p>&nbsp;</p>
<p>在后台下载中又可以细分为几种下载方式</p>
<p>首先,在前台,我们需要一个<a>标签</a></p>
<div>
<pre><a href="http://control.blog.sina.com.cn/admin/article/%3Cspan">"~/Home/download"&gt;Click to get file</a>
</pre>
</div>
<p>Home为controllerdownload为action。</p>
<p>如果需要传一些参数,可以:</p>
<div>
<pre><a href="http://control.blog.sina.com.cn/admin/article/%3Cspan">"~/Home/download?id=1"&gt;Click to get file</a>
</pre>
</div>
<p>&nbsp;</p>
<p>在后台:</p>
<p>1返回filestream</p>
<div>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
<pre>public FileStreamResult download()
{
string fileName = "aaa.txt";//客户端保存的文件名
string filePath = Server.MapPath("~/Document/123.txt");//路径
return File(new FileStream(filePath, FileMode.Open), "text/plain",
fileName);
}
</pre>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
</div>
<p>其中:&ldquo;text/plain&rdquo;是文件MIME类型</p>
<p>&nbsp;</p>
<p>2返回file</p>
<div>
<pre>public FileResult download()
{
string filePath = Server.MapPath("~/Document/123.txt");//路径
return File(filePath, "text/plain", "welcome.txt"); //welcome.txt是客户端保存的名字
}
</pre>
</div>
<p>&nbsp;</p>
<p>3TransmitFile方法</p>
<div>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
<pre> 1 public void download()
2 {
3 string fileName = "aaa.txt";//客户端保存的文件名
4 string filePath = Server.MapPath("~/Document/123.txt");//路径
5 FileInfo fileinfo = new FileInfo(filePath);
6 Response.Clear(); //清除缓冲区流中的所有内容输出
7 Response.ClearContent(); //清除缓冲区流中的所有内容输出
8 Response.ClearHeaders(); //清除缓冲区流中的所有头
9 Response.Buffer = true; //该值指示是否缓冲输出,并在完成处理整个响应之后将其发送
10 Response.AddHeader("Content-Disposition", "attachment;filename=" + fileName);
11 Response.AddHeader("Content-Length",fileinfo.Length.ToString());
12 Response.AddHeader("Content-Transfer-Encoding", "binary");
13 Response.ContentType = "application/unknow"; //获取或设置输出流的 HTTP MIME 类型
14 Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312"); //获取或设置输出流的 HTTP 字符集
15 Response.TransmitFile(filePath);
16 Response.End();
17 }
</pre>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
</div>
<p>&nbsp;</p>
<p>4Response分块下载</p>
<div>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
<pre> 1 public void download()
2 {
3 string fileName = "aaa.txt";//客户端保存的文件名
4 string filePath = Server.MapPath("~/Document/123.txt");//路径
5
6 System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath);
7 if (fileInfo.Exists == true)
8 {
9 const long ChunkSize = 102400;//100K 每次读取文件只读取100K这样可以缓解服务器的压力
10 byte[] buffer = new byte[ChunkSize];
11
12 Response.Clear();
13 System.IO.FileStream iStream = System.IO.File.OpenRead(filePath);
14 long dataLengthToRead = iStream.Length;//获取下载的文件总大小
15 Response.ContentType = "application/octet-stream";
16 Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName));
17 while (dataLengthToRead &gt; 0 &amp;&amp; Response.IsClientConnected)
18 {
19 int lengthRead = iStream.Read(buffer, 0, Convert.ToInt32(ChunkSize));//读取的大小
20 Response.OutputStream.Write(buffer, 0, lengthRead);
21 Response.Flush();
22 dataLengthToRead = dataLengthToRead - lengthRead;
23 }
24 Response.Close();
25 }
26 }
</pre>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
</div>
<p>&nbsp;</p>
<p><strong><input type="text" />+ajax方法</strong></p>
<p>要重点说说这个方法ajax返回不了文件流所以说用ajax调用上面任意一种后台方法都要出问题下载不了文件。</p>
<p>所以只能让后台返回所需下载文件的url地址然后调用windows.location.href。</p>
<p>&nbsp;</p>
<p>优点ajax可以传好几个参数当然以json形式传100个都无所谓。你要是用的方法传100得写死。。。公司需求至少要传100多个参数</p>
<p>缺点支持下载exe,rar,msi等类型文件。对于txt则会直接打开<strong>慎用!</strong>对于其他不常用的类型文件则直接报错。</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; 所以我的建议是得到多个参数通过数据库找到所有需要下载的文件然后压缩打包然后返回url下载。你要是一个一个给用户下用户都疯了</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong></strong>那么问题又来了C#怎么用代码实现将本地的一些文件打包压缩到服务器目录下呢?这我不知道。</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;因为你只是单纯的放在目录文件夹下没有用的我们平时在服务器某目录下添加某一个文件都是右键添加XXX项这样这样才能真正的将文件放在服务器中。</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;可是纯代码该怎么实现呢??</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<strong>*</strong>&nbsp;可能的解决方法先在项目目录下放一个空的rar文件或者没什么功能的exe,msi文件然后在后台打包完一些文件后去替换它不知道可行不。</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1首先清空原压缩包中的内容</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 2将文件压缩到压缩包中</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 3返回 XXX.rar</p>
<p>&nbsp;</p>
<p>前端:</p>
<div>
<pre><input type="&lt;span" />"button" id="downloaon"/&gt;
</pre>
</div>
<p>ajax:</p>
<div>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
<pre>$("#downloaon").click(function () {
$.ajax({
type: "GET",
url: "/Home/download",
data: { id: "1" },
dataType:"json",
success: function (result) {
window.location.target = "_blank";
window.location.href = result;
}
})
})
</pre>
<div><a title="复制代码"><img src="https://common.cnblogs.com/images/copycode.gif" alt="复制代码" /></a></div>
</div>
<p>后台:</p>
<div>
<pre>public string download(int id)
{
string filePath = "Document/123.msi";//路径
return filePath;
}
</pre>
</div>
<p>这里id是没有什么作用的后台就别用什么server.Mappath了肯定错。直接写服务器项目文件夹/文件名 即可。</p>