asp.net(C#)中上传大文件的几中常见应用方法
程序员文章站
2023-01-23 23:39:12
几种常见的方法,本文主要内容包括: 第一部分:首先我们来说一下如何解决asp.net中的文件上传大小限制的问题,我们知道在默认情况下asp.net的文件上传大小限...
几种常见的方法,本文主要内容包括:
第一部分:首先我们来说一下如何解决asp.net中的文件上传大小限制的问题,我们知道在默认情况下asp.net的文件上传大小限制为2m,一般情况下,我们可以采用更改web.config文件来自定义最大文件大小,如下:
这样上传文件的最大值就变成了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()
{}
/// 上传文件名称
public string filename
{
get
{
return filename;
}
set
{
filename = value;
}
}
private string filename;
/// 上传文件路径
public string filepath
{
get
{
return filepath;
}
set
{
filepath = value;
}
}
private string filepath;
/// 文件扩展名
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
</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
{
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上的资源到服务器。
首先需要引用 system.net 这个命名空间,然后操作如下: httpwebrequest hwq = (httpwebrequest)webrequest.create("http://localhost/pwtest/webform1.aspx");
httpwebresponse hwr = (httpwebresponse)hwq.getresponse();
byte[] bytes = new byte[hwr.contentlength];
stream stream = hwr.getresponsestream();
stream.read(bytes,0,convert.toint32(hwr.contentlength));
//httpcontext.current.response.binarywrite(bytes);
httpwebrequest 可以从internet上读取文件,因此可以很好的解决这个问题。
第一部分:首先我们来说一下如何解决asp.net中的文件上传大小限制的问题,我们知道在默认情况下asp.net的文件上传大小限制为2m,一般情况下,我们可以采用更改web.config文件来自定义最大文件大小,如下:
这样上传文件的最大值就变成了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()
{}
/// 上传文件名称
public string filename
{
get
{
return filename;
}
set
{
filename = value;
}
}
private string filename;
/// 上传文件路径
public string filepath
{
get
{
return filepath;
}
set
{
filepath = value;
}
}
private string filepath;
/// 文件扩展名
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
</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
{
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上的资源到服务器。
首先需要引用 system.net 这个命名空间,然后操作如下: httpwebrequest hwq = (httpwebrequest)webrequest.create("http://localhost/pwtest/webform1.aspx");
httpwebresponse hwr = (httpwebresponse)hwq.getresponse();
byte[] bytes = new byte[hwr.contentlength];
stream stream = hwr.getresponsestream();
stream.read(bytes,0,convert.toint32(hwr.contentlength));
//httpcontext.current.response.binarywrite(bytes);
httpwebrequest 可以从internet上读取文件,因此可以很好的解决这个问题。
下一篇: 日来京就诊20万人次,号贩各种手段来抢号