ASP.NET(C#) Web Api通過文件流下載文件的實例
來源:易賢網(wǎng) 閱讀:5311 次 日期:2016-08-06 13:33:47
溫馨提示:易賢網(wǎng)小編為您整理了“ASP.NET(C#) Web Api通過文件流下載文件的實例”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了ASP.NET(C#) Web Api通過文件流下載文件的方法,提供源碼下載,需要的朋友可以參考下。

下載文件到本地是很多項目開發(fā)中需要實現(xiàn)的一個很簡單的功能。說簡單,是從具體的代碼實現(xiàn)上來說的,.NET的文件下載方式有很多種,本示例給大家介紹的是ASP.NET Web Api方式返回HttpResponseMessage下載文件到本地。實現(xiàn)的方法很簡單,其中就是讀取服務(wù)器的指定路徑文件流,將其做為返回的HttpResponseMessage的Content。直接貼出DownloadController控件器的代碼:

using System;

using System.Collections.Generic;

using System.IO;

using System.Linq;

using System.Net;

using System.Net.Http;

using System.Net.Http.Headers;

using System.Web.Http;

namespace DownloadFileFromWebApi.Controllers

{

 [RoutePrefix("download")]

 public class DownloadController : ApiController

 {

 [Route("get_demo_file")]

 public HttpResponseMessage GetFileFromWebApi()

 {

  try

  {

  var FilePath = System.Web.Hosting.HostingEnvironment.MapPath(@"~/download/EditPlus64_xp85.com.zip");

  var stream = new FileStream(FilePath, FileMode.Open);

  HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);

  response.Content = new StreamContent(stream);

  response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");

  response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment") { 

  FileName="Wep Api Demo File.zip"

  };

  return response;

  }

  catch

  {

  return new HttpResponseMessage(HttpStatusCode.NoContent);

  }

 }

 }

}

以上就是本文的全部內(nèi)容,希望能給大家一個參考

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:ASP.NET(C#) Web Api通過文件流下載文件的實例

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)