ASP.NET 在下载文件时对其重命名
[csharp]
<pre name="code" class="csharp">string path = server.mappath("aa\\ahaakladahsasdas_bb.zip");
string newfilename = "";
if (file.exists(path))
{
fileinfo fi = new fileinfo(path);
response.clear();//clear 方法删除缓冲区中的所有 html 输出。但 clear 方法只删除响应正文
//而不删除响应标题。可以用该方法处理错误情况。
response.clearheaders();
response.buffer = false;//这句话的意思就是指明输出页面是否被缓冲,当属性值为true时,
//服务器将不会向客户端发送任何信息,直到所有程序执行完或者遇到
//response.flush或response.end语句,才会释放缓冲区的信息。
string filename = path.getfilename(path);
newfilename = newfilename + filename.substring(filename.lastindexof("."));
response.clear();
response.clearheaders();
response.buffer = false;
newfilename = httputility.urlencode(newfilename);// 这一步弹出下载保存的对话框,出现文件名乱码,但变量中的文件名是正常的。
response.appendheader("content-disposition", "attachment;filename=" + newfilename);//为用户保存文件是显示的名称
//告诉客户端这个响应内容的类型为attachment 你是通过response.appendheader("content-type", "attachment"); 申明的。
response.appendheader("content-length", fi.length.tostring());
response.contenttype = "application/octet-stream";
response.writefile(newfilename);//用response来返回文件的路径
response.flush();//清空response
response.end();
//response.end(); 如果抛异常的话可使用
//httpcontext.current.applicationinstance.completerequest();
}
else
{
response.write("<script langauge=javascript>alert(‘文件不存在!’);</script>");
}</pre><br>
<br>
<pre></pre>
<p></p>
<pre></pre>
<p></p>
<pre></pre>
上一篇: JSP中js传递和解析URL参数以及中文转码和解码问题
下一篇: 网站整体与页面关键词分布