最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ASP.NET MVC實(shí)現(xiàn)文件下載

 更新時間:2022年07月31日 10:24:08   作者:Darren Ji  
這篇文章介紹了ASP.NET MVC實(shí)現(xiàn)文件下載的方法,文中通過示例代碼介紹的非常詳細(xì)。對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下

思路

點(diǎn)擊一個鏈接,把該文件的Id傳遞給控制器方法,遍歷文件夾所有文件,根據(jù)ID找到對應(yīng)文件,并返回FileResult類型。

與文件相關(guān)的Model:

namespace MvcApplication1.Models
{
    public class FileForDownload
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Path { get; set; }
    }
}

文件幫助類

寫一個針對文件的幫助類,遍歷指定文件夾的所有文件,返回FileForDownload集合類型。在項(xiàng)目根目錄下創(chuàng)建Files文件夾,存放下載文件。

using System.Collections.Generic;
using System.IO;
using System.Web.Hosting;
using MvcApplication1.Models;

namespace MvcApplication1.Helper
{
    public class FileHelper
    {
        public List<FileForDownload> GetFiles()
        {
            List<FileForDownload> result = new List<FileForDownload>();
            DirectoryInfo dirInfo = new DirectoryInfo(HostingEnvironment.MapPath("~/Files"));

            int i = 0;
            foreach (var item in dirInfo.GetFiles())
            {
                result.Add(new FileForDownload()
                {
                    Id = i + 1,
                    Name = item.Name,
                    Path = dirInfo.FullName + @"\" + item.Name
                });
                i++;
            }
            return result;
        }
    }
}

HomeController中:

using System;
using System.Linq;
using System.Web.Mvc;
using MvcApplication1.Helper;

namespace MvcApplication1.Controllers
{
    public class HomeController : Controller
    {
        private FileHelper helper;

        public HomeController()
        {
            helper = new FileHelper();
        }

        public ActionResult Index()
        {
            var files = helper.GetFiles();
            return View(files);
        }

        public FileResult DownloadFile(string id)
        {
            var fId = Convert.ToInt32(id);
            var files = helper.GetFiles();
            string fileName = (from f in files
                where f.Id == fId
                select f.Path).FirstOrDefault();
            string contentType = "application/pdf";
            return File(fileName, contentType, "Report.pdf");
        }
    }
}

Home/Index.cshtml中:

@model IEnumerable<MvcApplication1.Models.FileForDownload>

@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<table>
    @foreach (var item in Model)
    {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.Id)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Name)
            </td>
            <td>
                @Html.ActionLink("下載", "DownloadFile", new { id = item.Id })
            </td>
        </tr>
        
    }
</table>

到此這篇關(guān)于ASP.NET MVC實(shí)現(xiàn)文件下載的文章就介紹到這了。希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

江川县| 和平区| 湄潭县| 高安市| 曲松县| 托克逊县| 大英县| 体育| 锡林浩特市| 德昌县| 保德县| 武清区| 德令哈市| 扶余县| 阜城县| 宁强县| 梓潼县| 万年县| 平陆县| 息烽县| 博湖县| 聂拉木县| 若尔盖县| 广饶县| 辽阳市| 雷山县| 铜山县| 盐源县| 南皮县| 安溪县| 嘉峪关市| 澜沧| 奎屯市| 拜泉县| 平邑县| 防城港市| 正镶白旗| 广宁县| 黎城县| 抚松县| 慈溪市|