首页 > 编程 > .NET > 正文

ASP.NET中常用的文件上传下载方法

2024-07-10 13:06:33
字体:
来源:转载
供稿:网友

    文件的上传下载是我们在实际项目开发过程中经常需要用到的技术,这里给出几种常见的方法,本文主要内容包括:
1、如何解决文件上传大小的限制
2、以文件形式保存到服务器
3、转换成二进制字节流保存到数据库以及下载方法
4、上传internet上的资源

第一部分:
    首先我们来说一下如何解决asp.net中的文件上传大小限制的问题,我们知道在默认情况下asp.net的文件上传大小限制为2m,一般情况下,我们可以采用更改web.config文件来自定义最大文件大小,如下:
<httpruntime executiontimeout="300" maxrequestlength="40960" usefullyqualifiedredirecturl="false"/>这样上传文件的最大值就变成了4m,但这样并不能让我们无限的扩大maxrequestlength的值,因为asp.net会将全部文件载入内存后,再加以处理。解决的方法是利用隐含的httpworkerrequest,用它的getpreloadedentitybody和readentitybody方法从iis为asp.net建立的pipe里分块读取数据。实现方法如下:
iserviceproviderprovider=(iserviceprovider)httpcontext.current;
httpworkerrequestwr=(httpworkerrequest)provider.getservice(typeof(httpworkerrequest));
byte[]bs=wr.getpreloadedentitybody();
.
if(!wr.isentireentitybodyispreloaded())
{
intn=1024;
byte[]bs2=newbyte[n];
while(wr.readentitybody(bs2,n)>0)
{
..
}
}这样就可以解决了大文件的上传问题了。

第二部分:
    下面我们来介绍如何以文件形式将客户端的一个文件上传到服务器并返回上传文件的一些基本信息
首先我们定义一个类,用来存储上传的文件的信息(返回时需要)。
public class fileupload
{
   public fileupload()
   {

   }
/**//// <summary>
        /// 上传文件名称
        /// </summary>
        public string filename
        {
            get
            {
                return filename;
            }
            set
            {
                filename = value;
            }
        }
        private string filename;

        /**//// <summary>
        /// 上传文件路径
        /// </summary>
        public string filepath
        {
            get
            {
                return filepath;
            }
            set
            {
                filepath = value;
            }
        }
        private string filepath;

       
        /**//// <summary>
        /// 文件扩展名
        /// </summary>
        public string fileextension
        {
            get
            {
                return fileextension;
            }
            set
            {
           
                fileextension = value;
            }
               
        }
        private string fileextension;
}
另外我们还可以在配置文件中限制上传文件的格式(app.config):


<?xml version="1.0" encoding="gb2312" ?>
<application>   
    <fileupload>
       <format>.jpg|.gif|.png|.bmp</format>
    </fileupload>
</application>
这样我们就可以开始写我们的上传文件的方法了,如下:
public fileupload uploadfile(htmlinputfile inputfile,string filepath,string myfilename,bool israndom)
        {
           
            fileupload fp = new fileupload();

            string filename,fileextension;
            string savename;
           
            //
            //建立上传对象
            //
            httppostedfile postedfile = inputfile.postedfile;

            filename        = system.io.path.getfilename(postedfile.filename);
            fileextension    = system.io.path.getextension(filename);
           
            //
            //根据类型确定文件格式
            //
            appconfig app = new appconfig();
            string format = app.getpath("fileupload/format");


            //
            //如果格式都不符合则返回
            //
            if(format.indexof(fileextension)==-1)
            {
                throw new applicationexception("上传数据格式不合法");
            }
               
            //
            //根据日期和随机数生成随机的文件名
            //
            if(myfilename != string.empty)
            {
                filename = myfilename;           
            }

            if(israndom)
            {
                random objrand = new random();
                system.datetime date = datetime.now;
                //生成随机文件名
                savename = date.year.tostring() + date.month.tostring() + date.day.tostring() + date.hour.tostring() + date.minute.tostring()

                    + date.second.tostring() + convert.tostring(objrand.next(99)*97 + 100);
                filename = savename + fileextension;
            }
           
            string phypath = httpcontext.current.request.mappath(filepath);


            //判断路径是否存在,若不存在则创建路径
            directoryinfo updir = new directoryinfo(phypath);
            if(!updir.exists)
            {
                updir.create();
            }

            //
            //保存文件
            //
            try
            {
                postedfile.saveas(phypath + filename);

                fp.filepath =  filepath  + filename;
                fp.fileextension = fileextension;
                fp.filename = filename;
            }
            catch
            {
                throw new applicationexception("上传失败!");
            }


            //返回上传文件的信息
            return fp;
       
       
        }
然后我们在上传文件的时候就可以调用这个方法了,将返回的文件信息保存到数据库中,至于下载,就直接打开那个路径就ok了。

第三部分:
    这里我们主要说一下如何以二进制的形式上传文件以及下载。首先说上传,方法如下:


public byte[] uploadfile(htmlinputfile f_ifile)
{
         //获取由客户端指定的上传文件的访问
         httppostedfile upfile=f_ifile.postedfile;
         //得到上传文件的长度
                int upfilelength=upfile.contentlength;
         //得到上传文件的客户端mime类型
                string contenttype = upfile.contenttype;
                byte[] filearray=new byte[upfilelength];
 
                stream filestream=upfile.inputstream;
               
                filestream.read(filearray,0,upfilelength);
       
        return filearray;

}
这个方法返回的就是上传的文件的二进制字节流,这样我们就可以将它保存到数据库了。下面说一下这种形式的下载,也许你会想到这种方式的下载就是新建一个aspx页面,然后在它的page_load()事件里取出二进制字节流,然后再读出来就可以了,其实这种方法是不可取的,在实际的运用中也许会出现无法打开某站点的错误,我一般采用下面的方法:
首先,在web.config中加入:
<add verb="*" path="openfile.aspx" type="ruixinoa.web.baseclass.openfile, ruixinoa.web"/>
这表示我打开openfile.aspx这个页面时,系统就会自动转到执行ruixinoa.web.baseclass.openfile 这个类里的方法,具体实现如下:
using system;
using system.data;
using system.web;
using system.io;
using ruixin.workflowdb;
using rxsuite.base;
using rxsuite.component;
using ruixinoa.businessfacade;

namespace ruixinoa.web.baseclass
{
    /**//// <summary>
    /// netufile 的摘要说明。
    /// </summary>
    public class openfile : ihttphandler
    {
        public void processrequest(httpcontext context)
        {
           
            //从数据库中取出要下载的文件信息
            ruixinoa.businessfacade.rx_oa_filemanager os = new rx_oa_filemanager();
            entitydata data = os.getfiledetail(id);

            if(data != null && data.tables["rx_oa_file"].rows.count > 0)
            {
                datarow dr = (datarow)data.tables["rx_oa_file"].rows[0];

                context.response.buffer = true;
                context.response.clear();
                context.response.contenttype = dr["ccontenttype"].tostring();
                context.response.addheader("content-disposition","attachment;filename=" + httputility.urlencode(dr["ctitle"].tostring()));
                context.response.binarywrite((byte[])dr["ccontent"]);
                context.response.flush();
                context.response.end();
            }
                       

        }

        public bool isreusable
        {

            get { return true;}
        }
    }
}

执行上面的方法后,系统会提示用户选择直接打开还是下载。这一部分我们就说到这里。

第四部分:

    这一部分主要说如何上传一个internet上的资源到服务器。前面我们有一篇文章详细介绍了使用方法,这里我不再多说。
请参考:将动态页面转化成二进制字节流

第五部分:总结
    今天简单的介绍了几种文件上传与下载的方法,都是在实际的项目开发中经常需要用到的,可能还有不完善的地方,希望大家可以互相交流一下项目开发中的经验。写的不好的地方,请指正,谢谢!

email:[email protected]3.com
posted on 2006-05-24 22:48 shy520 阅读(3256) 评论(17)  编辑 收藏 引用 收藏至365key 所属分类: asp.net1.1
 
评论:
# re: asp.net中文件上传下载方法集合 2006-05-25 09:54 | ivan

不错。特别是第三部分的下载,特别感谢。  回复
 
# re: asp.net中文件上传下载方法集合 2006-05-25 10:19 | 静思已过

学习
  回复
 
# re: asp.net中文件上传下载方法集合 2006-05-25 10:26 | iamsunrise

这也叫集合,拉到。  回复
 
# re: asp.net中文件上传下载方法集合 2006-05-25 10:31 | onekey

谢谢了,写得很实用  回复
 
# re: asp.net中文件上传下载方法集合 2006-05-25 10:35 | shy520

@ivan,静思已过,onekey
不客气,还有不完善的地方,我陆续加上
  回复
 
# re: asp.net中常用的文件上传下载方法 2006-05-25 10:39 | shy520

@iamsunrise
多谢提醒,名称已改,:)  回复
 
# re: asp.net中常用的文件上传下载方法 2006-05-25 11:06 | tianjj

能不能详细说一下如何作用:隐含的httpworkerrequest
和你上传的时候,怎么关联。
iserviceproviderprovider=(iserviceprovider)httpcontext.current;
httpworkerrequestwr=(httpworkerrequest)provider.getservice(typeof(httpworkerrequest));
byte[]bs=wr.getpreloadedentitybody();
.
if(!wr.isentireentitybodyispreloaded())
{
intn=1024;
byte[]bs2=newbyte[n];
while(wr.readentitybody(bs2,n)>0)
{
..
}
}  回复
 
# re: asp.net中常用的文件上传下载方法 2006-05-25 11:14 | shy520

@tianjj
我一般就通过修改配置文件来改上传文件的大小,基本上也够用了.
这种方法具体我还没试过,回去研究下,再发上来.:-)  回复
 
# re: asp.net中常用的文件上传下载方法 2006-05-25 11:18 | fuyude.net

@tianjj
这个其实就是一个httphandler模块.  回复
 
# re: asp.net中常用的文件上传下载方法 2006-05-25 11:20 | shy520

@fuyude.net
呵呵,多谢提醒了  回复
 
# re: asp.net中常用的文件上传下载方法 2006-06-06 00:32 | htusoft

entitydata data = os.getfiledetail(id);
请问id 用什么方法传达进去的?
  回复
 
# re: asp.net中常用的文件上传下载方法 2006-06-06 08:36 | shy520

@htusoft
这句只是说明一下得到要下载文件的明细,可以替换成自己的方法,例子中用的是websharp框架  回复
 
# re: asp.net中常用的文件上传下载方法 2006-07-08 18:01 | htusoft

我就是想知道,如果我带一个参数openfile.aspx?id=0001,
怎样把这个参数传入openfile 类,用querystring可以吗?
应该不可以吧,因为openfile 类不是从openfile.aspx的page基类继承而来。  回复
 
# re: asp.net中常用的文件上传下载方法 2006-07-08 19:52 | shy521

@htusoft
可以用querystring传值  回复
 
# re: asp.net中常用的文件上传下载方法 2006-07-08 19:54 | shy521

不过我的openfile类是继承ihttphandler的,这样就可以了  回复
 
# re: asp.net中常用的文件上传下载方法 2006-07-08 22:00 | htusoft

这样也会显示一个openfile.aspx页面。可不可以不让它显示  回复
 
# re: asp.net中常用的文件上传下载方法 2006-07-09 15:34 | shy520

@htusoft
这个我不清楚,这应该是比较好的一种方法了  回复

菜鸟学堂:
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表