asp.net实现网站上传下载功能的几种方法-创新互联

能实现网站下载的功能语言都是动态语言,除了asp.net,还有php,jsp等,这里以asp.net为例。

创新互联建站-专业网站定制、快速模板网站建设、高性价比澧县网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式澧县网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖澧县地区。费用合理售后完善,10余年实体公司更值得信赖。

 这种可以实现多种网站下载功能, 代码如下:

//TransmitFile实现下载
   protected void Button1_Click(object sender, EventArgs e)
    {

        Response.ContentType = "application/x-zip-compressed";
        Response.AddHeader("Content-Disposition", "p_w_upload;filename=z.zip");
       string filename = Server.MapPath("DownLoad/aaa.zip");
        Response.TransmitFile(filename);
    }

   //WriteFile实现下载
   protected void Button2_Click(object sender, EventArgs e)
    {

string fileName ="aaa.zip";//客户端保存的文件名
       string filePath=Server.MapPath("DownLoad/aaa.zip");//路径

        FileInfo fileInfo = new FileInfo(filePath);
        Response.Clear();
        Response.ClearContent();
        Response.ClearHeaders();
        Response.AddHeader("Content-Disposition", "p_w_upload;filename=" + fileName);
        Response.AddHeader("Content-Length", fileInfo.Length.ToString());
        Response.AddHeader("Content-Transfer-Encoding", "binary");
        Response.ContentType = "application/octet-stream";
        Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312");
        Response.WriteFile(fileInfo.FullName);
        Response.Flush();
        Response.End();

//WriteFile分块下载
   protected void Button3_Click(object sender, EventArgs e)
    {

       string fileName = "aaa.zip";//客户端保存的文件名
       string filePath = Server.MapPath("DownLoad/aaa.zip");//路径

        System.IO.FileInfo fileInfo = new System.IO.FileInfo(filePath);

       if (fileInfo.Exists == true)
        {
           const long ChunkSize = 102400;//100K 每次读取文件,只读取100K,这样可以缓解服务器的压力
           byte[] buffer = new byte[ChunkSize];

            Response.Clear();
            System.IO.FileStream iStream = System.IO.File.OpenRead(filePath);
           long dataLengthToRead = iStream.Length;//获取下载的文件总大小
            Response.ContentType = "application/octet-stream";
            Response.AddHeader("Content-Disposition", "p_w_upload; filename=" + HttpUtility.UrlEncode(fileName));
           while (dataLengthToRead > 0 && Response.IsClientConnected)
            {
               int lengthRead = iStream.Read(buffer, 0,

Convert.ToInt32(ChunkSize));//读取的大小
                Response.OutputStream.Write(buffer, 0, lengthRead);
                Response.Flush();
                dataLengthToRead = dataLengthToRead - lengthRead;
            }
            Response.Close();
        }
    }

   //流方式下载
   protected void Button4_Click(object sender, EventArgs e)
    {
       string fileName = "aaa.zip";//客户端保存的文件名
       string filePath = Server.MapPath("DownLoad/aaa.zip");//路径

       //以字符流的形式下载文件
        FileStream fs = new FileStream(filePath, FileMode.Open);
       byte[] bytes = new byte[(int)fs.Length];
        fs.Read(bytes, 0, bytes.Length);
        fs.Close();
        Response.ContentType = "application/octet-stream";
       //通知浏览器下载文件而不是打开

Response.AddHeader("Content-Disposition", "p_w_upload;  filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8));
        Response.BinaryWrite(bytes);
        Response.Flush();
        Response.End();

    }

完毕(end)

另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


当前文章:asp.net实现网站上传下载功能的几种方法-创新互联
URL地址:http://lszwz.com/article/pssic.html

其他资讯

售后响应及时

7×24小时客服热线

数据备份

更安全、更高效、更稳定

价格公道精准

项目经理精准报价不弄虚作假

合作无风险

重合同讲信誉,无效全额退款