当前位置:Shooter-GamesGames

web开发(读:fā)步骤

2025-02-26 04:34:16Shooter-GamesGames

求asp.net大文件分块上传实例源码?一般的在Asp.net里上传文件都是10m左右,要做到大文件上传,必须要改web.config,不过改了web.config有时候也上传不成功,那是每次上传的文件太大,浏览器在这个过程中会超时,采用分块上传的方法就可以避免这种情况

求asp.net大文件分块上传实例源码?

一般的在Asp.net里上传文件都是10m左右,要做到大文件上传,必须要改web.config,不过改了web.config有时候也上传不成功,那是每次上传的文件太大,浏览器在这个过程中会超时,采用分块上传的方法就可以避免这种情况。

2.分fēn 块上传就是利用post的方法,把数据分块上传,每měi 块上传的数据量少,不会引起超时的问题。不说了,看代码吧。

Code

1 //实现IHttpModule接《拼音:jiē》口

2 public class HttpUploadModule : IHttpModule

3 {

4 public HttpUploadModule()

5 {

6

7 }

8

9 public void Init(HttpApplication application)

10 {

11 //订阅事{练:shì}件

12 application.BeginRequest = new EventHandler(this.Application_BeginRequest)

13 }

14

15 public void Dispose()

16 {

17 }

18

19 private void Application_BeginRequest(Object sender, EventArgs e)

20 {

21 HttpApplication app = sender as HttpApplication

22 HttpWorkerRequest request = GetWorkerRequest(app.Context)

23 Encoding encoding = app.Context.Request.ContentEncoding

24

25 int bytesRead = 0 // 已[pinyin:yǐ]读数据大小

26 int read // 当前读取的块的大小{xiǎo}

27 int count = 8192 // 分块大小《练:xiǎo》

28 世界杯 byte[] buffer // 保存所有上传的数(繁:數)据

29

30 if (request != null)

31 {

32 // 返回 HTTP 请求正文已被读《繁:讀》取的部分。

33 byte[] tempBuff = request.GetPreloadedEntityBody() //要上传的文件(练:jiàn)

34

35 // 如rú 果是附件上传

36 if (tempBuff != null && IsUploadRequest(app.Request)) //判断是[pinyin:shì]不是附(pinyin:fù)件上传

37 {

38 // 获取上传大小《读:xiǎo》

39 //

40 long length = long.Parse(request.GetKnownRequestHeader(HttpWorkerRequest.HeaderContentLength))

41

42 buffer = new byte[length]

43 count = tempBuff.Length // 分块(繁体:塊)大小

44

45 // 将(jiāng)已上传数据复制过去

46 //

47 Buffer.BlockCopy(tempBuff, //源《拼音:yuán》数据

48 0, //从0开《繁体:開》始读

49 buffer, //目(mù)标容器

50 bytesRead, //指定存储的《拼音:de》开始位置

51 count) //要复制的《读:de》字节数。

52

53

54 // 开始记录已(拼音:yǐ)上传大小

55 bytesRead = tempBuff.Length

56

57 // 循环分块(繁体:塊)读取,直到所有数据读取结束

58 while (request.IsClientConnected() &&!request.IsEntireEntityBodyIsPreloaded() && bytesRead < length)

59 {

60 // 如果最后一块大小小于分块大小,则(繁体:則)重新分块

61 if (bytesRead count > length)

62 {

63 count = (int)(length - bytesRead)

64 tempBuff = new byte[count]

65 }

66

67 // 分块读(繁体:讀)取

68 read = request.ReadEntityBody(tempBuff, count)

69

70 // 复[繁体:覆]制已读数据块

71 Buffer.BlockCopy(tempBuff, 0, buffer, bytesRead, read)

72

73 // 记录已上传{练:chuán}大小

74 bytesRead = read

75

76 }

77 if ( request.IsClientConnected() && !request.IsEntireEntityBodyIsPreloaded() )

78 {

79 // 传入已上传(繁:傳)完的数据

80 InjectTextParts(request, buffer)

81 }

82 }

83 }

84 }

85

86

87 HttpWorkerRequest GetWorkerRequest(HttpContext context)

88 {

89

90 IServiceProvider provider = (IServiceProvider)HttpContext.Current

91 return (HttpWorkerRequest)provider.GetService(typeof(HttpWorkerRequest))

92 }

93

94 ///

95 /// 传入已上传完的数《繁:數》据

96 ///

97 ///

98 ///

99 void InjectTextParts(HttpWorkerRequest request, byte[] textParts)

100 {

101 BindingFlags bindingFlags = BindingFlags.Instance | BindingFlags.NonPublic

102

103 Type type = request.GetType()

104

105 while ((type != null) && (type.FullName != "System.Web.Hosting.ISAPIWorkerRequest"))

106 {

107 type = type.BaseType

皇冠体育

109

澳门金沙

110 if (type != null)

111 {

亚博体育

113 type.GetField("_contentTotalLength", bindingFlags).SetValue(request, textParts.Length)

114 type.GetField("_preloadedContent", bindingFlags).SetValue(request, textParts)

115 type.GetField("_preloadedContentRead", bindingFlags).SetValue(request, true)

116 }

117 }

118

119 private static bool StringStartsWithAnotherIgnoreCase(string s1, string s2)

120 {

121 return (string.Compare(s1, 0, s2, 0, s2.Length, true, CultureInfo.InvariantCulture) == 0)

122 }

123

124 ///

125 /// 是否为(繁体:爲)附件上传

126 /// 判断的根据是《读:shì》ContentType中有无multipart/form-data

127 ///

128 ///

129 ///

130 bool IsUploadRequest(HttpRequest request)

131 {

132 return StringStartsWithAnotherIgnoreCase(request.ContentType, "multipart/form-data")

133 }

134 }

3.用《yòng》法

(1)修改web.config

1

2

3 type="HttpModelApp.HttpUploadModule, HttpModelApp" />

4

澳门金沙

5

娱乐城

7 maxRequestLength="2000000"

8 executionTimeout="300"

9 /> (2)aspx

1

2

3

4

5

6

(3)aspx.cs

1 protected void Button1_Click(object sender, EventArgs e)

2 {

3 //要保存[拼音:cún]的位置

4 string strDesPath = "D:\"

5 string strFileName = this.firstFile.PostedFile.FileName

6 strFileName =strDesPath strFileName.Substring(strFileName.LastIndexOf("\"))

7 //

8 this.firstFile.PostedFile.SaveAs(strFileName)

9 this.Label1.Text = "文件保存到【拼音:dào】了:" strFileName

10 }

4.大{pinyin:dà}文件上传的限制

虽然可以上传大文件,但是这个大小也是[pinyin:shì]有限制的,不能超过2G的大小。

还(读:hái)有啊,大家不要忘记了导入命名空间.

using System

using System.Collections

澳门银河

using System.Collections.Specialized

using System.Globalization

using System.IO

using System.Text

using System.Web

using System.Reflection

web.config文件如下(pinyin:xià)

type="HttpModelApp.HttpUploadModule, HttpModelApp" />

maxRequestLength="2000000"

executionTimeout="300"

/>

本文链接:http://10.21taiyang.com/Shooter-GamesGames/1789616.html
web开发(读:fā)步骤转载请注明出处来源