使用WCF REST服务下载文件? [英] Download file using WCF Rest service?

查看:589
本文介绍了使用WCF REST服务下载文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果有来上传的方式文件通过流使用REST会有亦作下载?如果是的话,可以请你告诉我怎么样? !在此先感谢

If there is a way to Upload file using rest via stream would there be also for "Download"? If yes, can you please tell me how? Thanks in advance!

推荐答案

我使用从我的REST服务下载的文件的样本方法:

A sample method i use to download the file from my REST service:

[WebGet(UriTemplate = "file/{id}")]
        public Stream GetPdfFile(string id)
        {
            WebOperationContext.Current.OutgoingResponse.ContentType = "application/txt";
            FileStream f = new FileStream("C:\\Test.txt", FileMode.Open);
            int length = (int)f.Length;
            WebOperationContext.Current.OutgoingResponse.ContentLength = length;
            byte[] buffer = new byte[length];
            int sum = 0;
            int count;
            while((count = f.Read(buffer, sum , length - sum)) > 0 )
            {
                sum += count;
            }
            f.Close();
            return new MemoryStream(buffer); 
        }

这篇关于使用WCF REST服务下载文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆