0

我有一个网络表单应用程序。它需要能够上传大文件(100MB)。我打算使用 httpHandler 和 httpModule 将文件拆分为chunk

我还看了http://forums.asp.net/t/55127.aspx

但这是一篇非常古老的帖子,我在互联网上看到了一些使用 httpHandler 的示例。

例如http://silverlightfileupld.codeplex.com/

我不确定 httpModule 是否比 httpHandler 更好。

由于 httpModule 适用于整个应用程序的请求,我只希望它适用于指定页面。

任何人都可以清楚地解释httpHandler用于大文件上传的缺点(如果有的话)吗?如果你知道一个没有 flash/silverlight 的好例子,你能把链接贴在这里吗?谢谢

编辑:想看一些源代码示例。

4

1 回答 1

1

为什么不试试plupload,它有很多功能和很多后备,这里是如何完成的。

这是 http 处理程序代码:

Imports System
Imports System.IO
Imports System.Web


Public Class upload : Implements IHttpHandler


    Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest
        Dim chunk As Integer = If(context.Request("chunk") IsNot Nothing, Integer.Parse(context.Request("chunk")), 0)
        Dim fileName As String = If(context.Request("name") IsNot Nothing, context.Request("name"), String.Empty)

        Dim fileUpload As HttpPostedFile = context.Request.Files(0)

        Dim uploadPath = context.Server.MapPath("~/uploads")
        Using fs = New FileStream(Path.Combine(uploadPath, fileName), If(chunk = 0, FileMode.Create, FileMode.Append))
            Dim buffer = New Byte(fileUpload.InputStream.Length - 1) {}
            fileUpload.InputStream.Read(buffer, 0, buffer.Length)

            fs.Write(buffer, 0, buffer.Length)
        End Using

        context.Response.ContentType = "text/plain"
        context.Response.Write("Success")
    End Sub

    Public ReadOnly Property IsReusable() As Boolean Implements IHttpHandler.IsReusable
        Get
            Return False
        End Get
    End Property

End Class
于 2012-04-27T10:00:48.017 回答