• 图片上传/下载,DOC.xls文档下载的方法


    上传:

    Code

    下载

       private void ViewImage(string fileType, string fileName, bool forceDownload)
            
    {
                
    if (fileType == "application/msword" || fileType == "application/vnd.ms-excel")
                
    {
                    
    //Response.Redirect("UploadPic/" + fileName);
                    
    //return;
                    System.IO.FileStream r = new System.IO.FileStream(Server.MapPath("UploadPic/" + fileName), System.IO.FileMode.Open);
                    
    //设置基本信息 
                    Response.Buffer = false;
                    Response.AddHeader(
    "Connection""Keep-Alive");
                    Response.ContentType 
    = "application/octet-stream";
                    Response.AddHeader(
    "Content-Disposition""attachment;filename=" + System.IO.Path.GetFileName(Server.MapPath("UploadPic/" + fileName)));
                    Response.AddHeader(
    "Content-Length", r.Length.ToString());


                    
    while (true)
                    
    {
                        
    //开辟缓冲区空间 
                        byte[] buffer = new byte[1024];
                        
    //读取文件的数据 
                        int leng = r.Read(buffer, 01024);
                        
    if (leng == 0)//到文件尾,结束 
                            break;
                        
    if (leng == 1024)//读出的文件数据长度等于缓冲区长度,直接将缓冲区数据写入 
                            Response.BinaryWrite(buffer);
                        
    else
                        
    {
                            
    //读出文件数据比缓冲区小,重新定义缓冲区大小,只用于读取文件的最后一个数据块 
                            byte[] b = new byte[leng];
                            
    for (int i = 0; i < leng; i++)
                                b[i] 
    = buffer[i];
                            Response.BinaryWrite(b);
                        }

                    }

                    r.Close();
    //关闭下载文件 
                    Response.End();//结束文件下载 
                }

                Response.Clear();
                
    if (forceDownload)
                
    {
                    Response.AppendHeader(
    "Content-Disposition""attachment; filename=" + fileName);
                }

                
    else
                
    {
                    Response.AppendHeader(
    "Content-Disposition""filename=" + fileName);
                }


                
    using (System.Drawing.Image image = System.Drawing.Image.FromFile(MapPath(picDic + fileName)))
                
    {
                    
    if (image.RawFormat.Equals(ImageFormat.Bmp))
                    
    {
                        Response.ContentType 
    = "image/bmp";
                    }

                    
    else
                    
    {
                        
    if (image.RawFormat.Equals(ImageFormat.Gif))
                        
    {
                            Response.ContentType 
    = "image/gif";
                        }

                        
    else
                        
    {
                            
    if (image.RawFormat.Equals(ImageFormat.Jpeg))
                            
    {
                                Response.ContentType 
    = "image/jpeg";
                            }

                            
    else
                            
    {
                                
    if (image.RawFormat.Equals(ImageFormat.Png))
                                
    {
                                    Response.ContentType 
    = "image/png";
                                }

                                
    else
                                
    {
                                    Response.ContentType 
    = "application/octet-stream";
                                }

                            }

                        }


                        image.Save(Response.OutputStream, image.RawFormat);
                    }

                }

            }
  • 相关阅读:
    【python小练】0020
    【python小练】0017-将xls文件内容写入xml文件中
    【python小练】图片爬虫之BeautifulSoup4
    【python小练】0013
    【python小练】0014题 和 0015 题
    【python小练】0012题
    【python小练】0011题
    【python小练】0010
    【python小练】0005
    2018.09.11python学习第1天
  • 原文地址:https://www.cnblogs.com/weichuo/p/1206620.html
Copyright © 2020-2023  润新知