常遇到上传下载的功能,这里把我习惯的用法写下来:

上传:

string fileName = "";
fileName = this.fu_pic.FileName;
if (string.IsNullOrEmpty(fileName))
  isPic = "0";
else
  isPic = "1";

//附件不为空的时候上传图片,否则不处理
if (isPic == "1")
{
  byte[] arrayByte = this.fu_pic.FileBytes;
  if (arrayByte.Length <= 0)
  {
    //Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('上传图片是空文件!')</script>");
    AlertMessage("上传图片是空文件!");
    this.fu_pic.Focus();
    return;
  }

  string extention = fileName.Substring(fileName.LastIndexOf(".") + 1);
  if (extention.ToUpper() != "JPG"
                    && extention.ToUpper() != "BMP"
                    && extention.ToUpper() != "PNG"
                    && extention.ToUpper() != "GIF")
  {
    //Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('图片格式错误,请上传jpg/bmp/png/gif格式图片!')</script>");
    AlertMessage(@"图片格式错误,请上传jpg/bmp/png/gif格式图片!");
    this.fu_pic.Focus();
    return;
  }
  else
  {
    //按照年/月 生成文件目录
    fileName = string.Format(@"UploadImage\{0}\{3}\{1}{2}", DateTime.Now.Year.ToString(), DateTime.Now.ToString("yyyyMMddHHmmssfff"), fileName, DateTime.Now.Month.ToString());
    //获取附件上传物理路径(这里设置在config文件中)
    string dePath = ConfigurationManager.AppSettings["upload"].ToString();
    string filePath = Path.Combine(dePath, fileName);//Server.MapPath(@".." + fileName);//外面一层就是网站目录
    if (saveView(arrayByte, filePath))
    {
      //saveAttach = true;

    }
    else
    {
      //saveAttach = false;
      //Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('图片上传服务器失败!')</script>");
      AlertMessage("图片上传服务器失败!");
      this.fu_pic.Focus();
      return;
    }
  }
}

public bool saveView(byte[] arry_byte, string filePath)
    {
        bool rst = false;
        FileStream saveStream = null;
        try
        {
            //判断文件夹是否存在
            FileInfo file = new FileInfo(filePath);
            if (!file.Exists)
            {
                if (!Directory.Exists(file.DirectoryName))
                    Directory.CreateDirectory(file.DirectoryName);
            }
            file = null;

//保存文件
            saveStream = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);
            saveStream.Write(arry_byte, 0, arry_byte.Length);
            saveStream.Close();
            rst = true;
        }
        catch (Exception)
        {
            rst = false;
        }

return rst;
    }

下载保存:

/// <summary>
        /// 下载服务端文件
        /// </summary>
        /// <param name="fileName">下载时客户端显示名称</param>
        /// <param name="filePath">服务端文件完全物理路径</param>
        /// <returns></returns>
        public void DownloadFile(string fileName, string filePath)
        {
            //服务端文件是否存在
            if (File.Exists(filePath))
            {
                FileInfo fi = new FileInfo(filePath);
                long length = fi.Length;

//读取文件到流sr中,using为防止文件被进程占据,强制释放资源
                using (FileStream sr = new FileStream(filePath, FileMode.Open))
                {
                    int startlength = 0;
                    int bufferSize = 1;
                    byte[] buffer = new byte[bufferSize];
                    byte[] allBuffer = new byte[length];

//循环读取流到allBuffer中
                    while (startlength < length)
                    {
                        //读取bytes个字节到buff中的0到bufferSize位置
                        //sr.read后,sr自动移动到读取的位置
                        int bytes = sr.Read(buffer, 0, bufferSize);

//将buff内容存入allBuffer中
                        allBuffer[startlength] = buffer[0];

//前进bytes个位置
                        startlength += bytes;
                    }

//清空缓存中的流
                    Response.Clear();
                    Response.ClearContent();
                    Response.ClearHeaders();

//输出流
                    Response.AddHeader("Accept-Ranges", "bytes");
                    Response.ContentType = "application/octet-stream";
                    Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(fileName, Encoding.GetEncoding("gb2312")));
                    Response.BinaryWrite(allBuffer);
                    Response.Flush();
                    Response.End();
                }
            }
        }

更加简洁的下载:

string fileName = "日志.txt";
            string txtFullFilePath = "c:/test/aa.txt";

if (File.Exists(Server.MapPath(txtFullFilePath)))
            {
                //文件对象
                FileInfo fileInfo = new FileInfo(Server.MapPath(txtFullFilePath));
                Response.Clear();
                Response.ClearContent();
                Response.ClearHeaders();
                Response.AddHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(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();
            }

fileupload控件上传、文件下载的更多相关文章

  1. .net简单的fileupload控件上传

    前台代码: <asp:FileUpload ID="FileUpload1" runat="server" /> <asp:Button ID ...

  2. WebForm使用FileUpload控件上传压缩二进制图片

    fuImage 是FileUpload页面控件 ImageHelper.CompressionImage(fuImage.FileBytes, quality); /// <summary> ...

  3. asp.net FileUpload 控件上传文件 以二进制的形式存入数据库并将图片显示出来

    图片上传事件代码如下所示: byte[] binary = upload.FileBytes; StringBuilder sqlStrSb = new StringBuilder(); sqlStr ...

  4. asp:FileUpload 控件上传多文件

    <asp:FileUpload runat="server" ID="imgUpload" AllowMultiple="true" ...

  5. FileUpload的控件上传excel

    在一个使用FileUpload的控件上传excel,读取excel的数据 因为上传的路径一直被限定在C:\Program\IIS\Express 一直限制这个文件下, 想要解决这个问题. 在谷歌浏览器 ...

  6. MVC项目使用easyui的filebox控件上传文件

    开发环境:WIN10+IE11,浏览器请使用IE10或以上版本 开发技术框架MVC4+JQuery Easyui+knockoutjs 效果为弹出小窗体,如下图 1.前端cshtml文件代码(只包含文 ...

  7. JS ajaxfileUpload 一次性上传多个input控件 上传多个文件

    本方法适用于一次性上传多个input框输入的文件,如下图所示,任务是需要一次上传两个input框提供的两个文件. 具体方法: 1.修改ajax调用方法 如上图所示,只需要将ajaxFileUpload ...

  8. c#上传文件(一)使用 .net 控件上传文件

    1.html代码: <body> <form id="form1" runat="server"> <div> <as ...

  9. upload控件上传json文件合并的两种方法

    方法一: byte[] byte1 = FileUpload1.FileBytes; byte[] byte2 = FileUpload2.FileBytes; byte[] a1 = Encodin ...

随机推荐

  1. sencha architect/sencha touch , to prevent breakpoint lost when you debug

    add this to your loader config: Ext.Loader.setConfig({ disableCaching: false }); or : click 'applica ...

  2. EL四大作用域 9个jsp对象有效范围 及 对应的类

    java中request,session,application的作用范围 page,request,session,application四者的作用范围: page的作用范围是当前页面:对应El表达 ...

  3. Seay工具分享

    百度网盘:http://pan.baidu.com/share/home?uk=4045637737&view=share#category/type=0

  4. DOM in Angular2

    <elementRef> import {ElementRef} from "@angular/core"; constructor(private element:  ...

  5. Jmeter使用——参数化

    最近一个想项目使用jmeter进行测试,陆续将遇到并解决的问题记录下来,本次主要记录参数化得一些问题. 1. 单台压力机 多个线程组不重复数字,注意分布式负载时多个压力机会出现重复的问题 主要思路分别 ...

  6. 解决VC++6.0 无法打开、无法添加工程文件

    在windows系统下,经常会遇到这样的问题:点击VC++6.0 的[文件]下的[打开]无法操作,并且无法向工程添加文件,下面详细介绍一下解决方案? 工具/原料 VC++6.0 修复工具:FileTo ...

  7. Android-UGallery

    public class UGallery extends Gallery { public UGallery(Context context, AttributeSet attrs) { super ...

  8. 正则表达式(javascript)学习总结

    正则表达式在jquery.linux等随处可见,已经无孔不入.因此有必要对这个工具认真的学习一番.本着认真.严谨的态度,这次总结我花了近一个月的时间.但本文无任何创新之处,属一般性学习总结. 一.思考 ...

  9. linux 文件、文件夹的重命名命令

    linux中没有重命名命令,一般用mv替代.如将test更名为testsmv test tests隐藏是mv test .test 说到文件的隐藏,linux下文件如果想隐藏起来只要重命名这个文件就可 ...

  10. ERP 能够做什么

    1. ERP 能解决既有物料短缺又有库存积压的库存管理难题 企业在管理库存问题上,经常处于两难之中. 要多存物料,肯定会积压资金:少存物料,又怕物料短缺,影响生产. 这样,物料的短缺和库存积压总是同时 ...