asp.net(C#)中上传大文件的几中常见应用方法

几种常见的方法,本文主要内容包括:
  
  第一部分:首先我们来说一下如何解决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上读取文件,因此可以很好的解决这个问题。

(0)

相关推荐

  • C#中使用HttpDownLoadHelper下载文件实例

    本文实例讲述了C#使用HttpDownLoadHelper下载文件的方法.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.IO; using System.Threading; namespace ProjectWenDangManage.Framework {     /// <sum

  • C# 文件上传 默认最大为4M的解决方法

    1,环境:window 2003 ,IIS6.0 要首先要修改IIS6.0中的asp请求的最大字节数,默认时为200K: 方法:打开位于 C:\Windows\System32\Inetsrv 中的 metabase.XML, 并修改 AspMaxRequestEntityAllowed 为你需要的值(例如 "1073741824", 1GB): 技术背景: 在 IIS 6.0 中, AspMaxRequestEntityAllowed 属性指定了一个 ASP 请求(Request)可

  • C#实现文件上传及文件下载功能实例代码

    废话不多说了,直接给大家贴代码了,具体代码如下所示: public ActionResult Upload() { // var pathUrl = "http://" + Request.Url.Authority; var file = Request.Files["Filedata"]; var uploadFileName = file.FileName; string filePath = "/File/" + uploadFileNa

  • asp.net(c#)开发中的文件上传组件uploadify的使用方法(带进度条)

    在Web开发中,有很多可以上传的组件模块,利用HTML的File控件的上传也是一种办法,不过这种方式,需要处理的细节比较多,而且只能支持单文件的操作.在目前Web开发中用的比较多的,可能uploadify(参考http://www.uploadify.com/)也算一个吧,不过这个版本一直在变化,他们的脚本调用也有很大的不同,甚至调用及参数都一直在变化,很早的时候,那个Flash的按钮文字还没法变化,本篇随笔主要根据项目实际,介绍一下3.1版本的uploadify的控件使用,这版本目前还是最新的

  • C#实现Web文件上传的两种方法实例代码

    1. C#实现Web文件的上传 使用C#如何实现文件上传的功能呢?下面笔者简要介绍一下. 首先,在你的Visual C# web project 中增加一个上传用的Web Form,为了要上传文件,需要在ToolBox中选择HTML类的File Field控件,将此控件加入到Web Form中,然而此时该控件还不是服务端控件,我们需要为它加上如下一段代码:<input id=PreviousFile1 type=file size=49 runat="server">,这样

  • C#实现HTTP上传文件的方法

    本文实例讲述了C#实现HTTP上传文件的方法.分享给大家供大家参考.具体实现方法如下: 发送文件代码如下: 复制代码 代码如下: /// <summary> /// Http上传文件 /// </summary> public static string HttpUploadFile(string url, string path) {     // 设置参数     HttpWebRequest request = WebRequest.Create(url) as HttpWe

  • C#实现文件断点续传下载的方法

    本文实例讲述了C#实现文件断点续传下载的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.IO; using System.Text; using System.Net; namespace simpleDemo { class Program { /// <su

  • C#实现HTTP下载文件的方法

    本文实例讲述了C#实现HTTP下载文件的方法.分享给大家供大家参考. 主要实现代码如下: 复制代码 代码如下: /// <summary> /// Http下载文件 /// </summary> public static string HttpDownloadFile(string url, string path) {     // 设置参数     HttpWebRequest request = WebRequest.Create(url) as HttpWebReques

  • C# 通用文件上传类

    1.Upfile.aspx: 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Upfile.aspx.cs" Inherits="Inc_Upfile" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http

  • C# Winform下载文件并显示进度条的实现代码

    方法一: 效果如下图所示: 代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WinShowDown { public partial class F

随机推荐