网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

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实现网站上传下载功能的几种方法-创新互联
文章地址:http://bjjierui.cn/article/pssic.html

其他资讯