Rest文件下载
public void DownloadFile(string fileId)
{
//Stream fileStream = null;
try
{
int fileID = Convert.ToInt32(fileId);
string RelatePath = fileInfoBLL.GetRelatePath(fileID);
string fileFullPath = filePath + "\\" + RelatePath;
string fileName = fileInfoBLL.GetFileName(fileID);
var response = HttpContext.Current.Response;
response.Clear();
response.Buffer = true;
//fileName = System.Web.HttpUtility.UrlEncode(fileName, System.Text.Encoding.GetEncoding("UTF-8"));
response.AppendHeader("Content-Disposition", "attachment;filename=" + fileName);
response.ContentEncoding = System.Text.Encoding.UTF8;
response.Charset = "UTF-8";
response.WriteFile(fileFullPath);
}
catch (Exception ex)
{
ExceptionHandler.ExceptionHelper.Instance.HandleException(ex);
}
}
将字符串转换成指定编码格式:
string fileName = System.Web.HttpUtility.UrlEncode("要转换的字符串", System.Text.Encoding.GetEncoding("UTF-8")); 2 string gbStr = System.Text.Encoding.GetEncoding("gb2312").GetString(System.Text.Encoding.Default.GetBytes('xxx'));
另一种:
private void DownloadFile(string fileName, string filePath)
{
try
{
if (!string.IsNullOrEmpty(filePath))
{
if (string.IsNullOrEmpty(fileName))
{
fileName = filePath.Substring(filePath.LastIndexOf("\\") + );
} context.Response.Clear();
context.Response.Buffer = true;
context.Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlPathEncode(fileName));
context.Response.ContentEncoding = System.Text.Encoding.UTF8;
context.Response.Charset = "UTF-8";
//context.Response.ContentType = "application/vnd.ms-excel";
context.Response.WriteFile(UploadFileSavePath + "\\" + filePath);
}
}
catch (Exception ex)
{
ExceptionHelper.Instance.HandleException(ex);
context.Response.Write("{\"bizSuccess\":false,\"msg\":\"下载文件时发生错误!\"}");
} context.Response.Flush();
context.Response.End();
}
利用WebOperationContext.Current.OutgoingResponse下载
public Stream DownloadFile(string token)
{
Stream fileStream = null;
try
{
//FilesInfo filesInfo = m_FileDAL.Find<FilesInfo>(fileId);
//string fileFullPath = filesInfo.FileUrl + filesInfo.FileName;
//string fileFullPath = m_FileDAL.Find<FilesInfo>(fileId).FileUrl;
//string fileFullPath = @"C:\Users\chen\Desktop\reader.txt";
string fileFullPath = @"C:\Users\chen\Desktop\HSF第四次读后感.docx";
//string fileName = "reader.txt";
string fileName = "HSF第四次读后感.docx";
fileStream = File.OpenRead(fileFullPath);
var response = WebOperationContext.Current.OutgoingResponse;
response.Headers.Add("Content-Disposition", "attachment;filename=" + HttpUtility.UrlPathEncode(fileName));
response.ContentType = "application/octet-stream";
//var message = WebOperationContext.Current.CreateStreamResponse(fileStream, "application/octet-stream");
//message.Headers.Add(System.ServiceModel.Channels.MessageHeader.CreateHeader("Content-Disposition", "", "attachment;filename=" + HttpUtility.UrlPathEncode(fileName)));
//response.Clear();
//response.Buffer = true;
//response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlPathEncode(fileName));
//response.ContentEncoding = System.Text.Encoding.UTF8;
//response.Charset = "UTF-8"; //result.Success = true;
//result.ErrorMessage = string.Format("{0}下载成功!", fileId);
//result.Data = fileStream;
}
catch (Exception ex)
{ //result.Success = false;
//result.ErrorMessage = string.Format("{0}下载失败!", fileId);
//result.Data = null;
} return fileStream;
}
Rest文件下载的更多相关文章
- Android 浏览器 —— 使用 WebView 实现文件下载
对当前的WebView设置下载监听 mCurrentWebView.setDownloadListener(new DownloadListener() { @Override public void ...
- C# 文件下载 : WinINet
在 C# 中,除了 WebClient 我们还可以使用一组 WindowsAPI 来完成下载任务.这就是 Windows Internet,简称 WinINet.本文通过一个 demo 来介绍 Win ...
- ASP.net MVC 文件下载的几种方法(欢迎讨论)
在ASP.net MVC 中有几种下载文件的方法 前提:要下载的文件必须是在服务器目录中的,至于不在web项目server目录中的文件下载我不知道,但是还挺想了解的. 第一种:最简单的超链接方法,&l ...
- 让IIS7.0.0.0支持 .iso .7z .torrent .apk等文件下载的设置方法
IIS默认支持哪些MIME类型呢,我们可以这样查看:打开IIS管理器(计算机--管理--服务和应用程序--Internet信息服务(IIS)管理器:或者Win+R,输入inetmgr,Enter),在 ...
- Android中使用AsyncTask实现文件下载以及进度更新提示
Android提供了一个工具类:AsyncTask,它使创建需要与用户界面交互的长时间运行的任务变得更简单.相对Handler来说AsyncTask更轻量级一些,适用于简单的异步处理,不需要借助线程和 ...
- 利用Tomcat内置的servlet实现文件下载功能
起因 最近博客所在的VPS挂了又要重装系统,又要重装各种软件. 以前我也经常更换VPS,每次更换都是各种坑爹事情..比如要下载java.下载tomcat.下载mysql..........以前每次我都 ...
- 多个文件下载打包生成zip格式下载
这个多个文件下载生成zip格式必须先引用一个ICSharpCode.SharpZipLib.dll. 代码如下 //将多个文件打包成压缩文件zip格式下载 protected voi ...
- .net一般处理程序(httphandler)实现文件下载功能
Handler文件代码如下: public class MDMExporterWeb : IHttpHandler { public void ProcessRequest(HttpContext c ...
- asp.net 文件下载(txt,rar,pdf,word,excel,ppt)
aspx 文件下载说起来一点都不难,但是在做的过程中还是遇到了一些小小的问题,就是因为这些小小的问题,导致解决起来实在是太难了,其中一个就是Response.End();导致下载文件出现线程终止的情况 ...
- JavaScript多文件下载
对于文件的下载,可以说是一个十分常见的话题,前端的很多项目中都会有这样的需求,比如 highChart 统计图的导出,在线图片编辑中的图片保存,在线代码编辑的代码导出等等.而很多时候,我们只给了一个链 ...
随机推荐
- Spring事务管理中@Transactional
最近写的一个消息推送的接口,供订单生成后调用,发现每次传过来的时候订单id是存在的,可是利用订单id去查订单信息做后续操作时发现查不到数据,最终发现是订单生成时候业务处理写在service层,加了Sp ...
- jquery添加的html元素按钮为什么不执行类样式绑定的click事件
代码举例: 更多按钮: <input type="button" class="addMore" id="addMore${issue.id } ...
- hadoop2.0 和1.0的区别
1. Hadoop 1.0中的资源管理方案Hadoop 1.0指的是版本为Apache Hadoop 0.20.x.1.x或者CDH3系列的Hadoop,内核主要由HDFS和MapReduce两个系统 ...
- Mahout推荐算法基础
转载自(http://www.geek521.com/?p=1423) Mahout推荐算法分为以下几大类 GenericUserBasedRecommender 算法: 1.基于用户的相似度 2.相 ...
- vsto publish后无法弹出winform窗口
http://www.cnblogs.com/xiyang1011/archive/2011/06/07/2074025.html - - 没有调用form.show()...
- 解决apache AH01630: client denied by server configuration错误
昨天给公司配置了apache-2.4.9的版本,今天他们要求把虚拟主机配置起好放网站程序,在修改apache-2.4.9的配置文件中,我发现了2.4.x跟以前的2.2.x里面的很多配置都不一样了,比如 ...
- django.test.client 使用随记
import os,sys,django; sys.path.append("\\path\\to\\mysite")#ATTETION!,Err: "unable to ...
- IOC(控制反转和依赖注入)之Autofac
Autofac是一款IOC框架,比较于其他的IOC框架,如Spring.NET,Unity,Castle等等所包含的,它很轻量级性能上也是很高的.于是,今天抽空研究了下它.下载地址:http://co ...
- wp8.1 Study7: ListView 和GridView应用
对于列表控件,WP8.1常用的是ListView.GridView.ListBox控件.其中前两个是从第三个继承来的. 1.ListView控件 它是展示垂直列表的,如下图所示.它十分适合展示数据. ...
- No module ata_piix found的解决方法
在一台as4u6的机器上升级内核到2.6.18时,最好make install的时候报了一个WARNING: No module ata_piix found for 2.6.18, 开始没有在意,重 ...