-
C#教程之.net文件上传时实现通过文件头确认文件
本文实例讲述了.net文件上传时实现通过文件头确认文件类型的方法,其中 script 用来返回给页面的数据,读者还可以根据自身需要对相关部分自行修改。另外,文件头也可以自行添加定义。
主要代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
|
AppCode/FileUpload.cs using System; using System.Collections.Generic; using System.IO; using System.Text; using System.Text.RegularExpressions; using System.Web; /// <summary> /// FileHeader 的摘要说明 /// </summary> public static class FileUpload { private static string script = string .Empty; private static bool autonamed = true ; private static Random ra = new Random(); public static bool AutoNamed { get { return autonamed; } set { autonamed = value; } } public static string Script { get { return "var upload = [" + script + "];" ; } } public static Dictionary< string , byte []> ImageHeader = new Dictionary< string , byte []>(); public static Dictionary< string , object > FilesHeader = new Dictionary< string , object >(); static FileUpload() { ImageHeader.Add( "gif" , new byte [] { 71, 73, 70, 56, 57, 97 }); ImageHeader.Add( "bmp" , new byte [] { 66, 77 }); ImageHeader.Add( "jpg" , new byte [] { 255, 216, 255 }); ImageHeader.Add( "png" , new byte [] { 137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82 }); FilesHeader.Add( "pdf" , new byte [] { 37, 80, 68, 70, 45, 49, 46, 53 }); FilesHeader.Add( "docx" , new object [] { new byte [] { 80, 75, 3, 4, 20, 0, 6, 0, 8, 0, 0, 0, 33 }, new Regex( @"word/_rels/document\.xml\.rels" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "xlsx" , new object [] { new byte [] { 80, 75, 3, 4, 20, 0, 6, 0, 8, 0, 0, 0, 33 }, new Regex( @"xl/_rels/workbook\.xml\.rels" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "pptx" , new object [] { new byte [] { 80, 75, 3, 4, 20, 0, 6, 0, 8, 0, 0, 0, 33 }, new Regex( @"ppt/_rels/presentation\.xml\.rels" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "doc" , new object [] { new byte [] { 208, 207, 17, 224, 161, 177, 26, 225 }, new Regex( @"microsoft( office)? word(?![\s\S]*?microsoft)" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "xls" , new object [] { new byte [] { 208, 207, 17, 224, 161, 177, 26, 225 }, new Regex( @"microsoft( office)? excel(?![\s\S]*?microsoft)" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "ppt" , new object [] { new byte [] { 208, 207, 17, 224, 161, 177, 26, 225 }, new Regex( @"c.u.r.r.e.n.t. .u.s.e.r(?![\s\S]*?[a-z])" , RegexOptions.IgnoreCase) }); FilesHeader.Add( "avi" , new byte [] { 65, 86, 73, 32 }); FilesHeader.Add( "mpg" , new byte [] { 0, 0, 1, 0xBA }); FilesHeader.Add( "mpeg" , new byte [] { 0, 0, 1, 0xB3 }); FilesHeader.Add( "rar" , new byte [] { 82, 97, 114, 33, 26, 7 }); FilesHeader.Add( "zip" , new byte [] { 80, 75, 3, 4 }); } private static string DateTimeStamp() { return DateTime.Now.ToString( "yyyyMMddHHmmss" ) + ra.Next(0, 99999).ToString( "00000" ); } private static string FileType(Stream str) { string FileExt = string .Empty; foreach ( string ext in FilesHeader.Keys) { byte [] header = FilesHeader[ext].GetType() == ( new byte [] { }).GetType() ? ( byte [])FilesHeader[ext] : ( byte [])((( object [])FilesHeader[ext])[0]); byte [] test = new byte [header.Length]; str.Position = 0; str.Read(test, 0, test.Length); bool same = true ; for ( int i = 0; i < test.Length; i++) { if (test[i] != header[i]) { same = false ; break ; } } if (FilesHeader[ext].GetType() != ( new byte [] { }).GetType() && same) { object [] obj = ( object [])FilesHeader[ext]; bool exists = false ; if (obj[1].GetType().ToString() == "System.Int32" ) { for ( int ii = 2; ii < obj.Length; ii++) { if (str.Length >= ( int )obj[1]) { str.Position = str.Length - ( int )obj[1]; byte [] more = ( byte [])obj[ii]; byte [] testmore = new byte [more.Length]; str.Read(testmore, 0, testmore.Length); if (Encoding.GetEncoding(936).GetString(more) == Encoding.GetEncoding(936).GetString(testmore)) { exists = true ; break ; } } } } else if (obj[1].GetType().ToString() == "System.Text.RegularExpressions.Regex" ) { Regex re = (Regex)obj[1]; str.Position = 0; byte [] buffer = new byte [( int )str.Length]; str.Read(buffer, 0, buffer.Length); string txt = Encoding.ASCII.GetString(buffer); if (re.IsMatch(txt)) { exists = true ; } } if (!exists) { same = false ; } } if (same) { FileExt = ext; break ; } } return FileExt; } private static string ImageType(Stream str) { string FileExt = string .Empty; foreach ( string ext in ImageHeader.Keys) { byte [] header = ImageHeader[ext]; byte [] test = new byte [header.Length]; str.Position = 0; str.Read(test, 0, test.Length); bool same = true ; for ( int i = 0; i < test.Length; i++) { if (test[i] != header[i]) { same = false ; break ; } } if (same) { FileExt = ext; break ; } } if (! string .IsNullOrEmpty(FileExt)) { Encoding[] chkList = new Encoding[] { Encoding.ASCII, Encoding.UTF8, Encoding.GetEncoding(936) }; for ( int i = 0; i < chkList.Length; i++) { str.Position = 0; string str_test = new StreamReader(str, chkList[i]).ReadToEnd(); if (Regex.IsMatch(str_test, @"^[^\u0000-\u0008\u000B-\u000C\u000E-\u001F]*$" )) { FileExt = string .Empty; break ; } } } return FileExt; } private static void CreateFolder( string path) { string t_path = HttpContext.Current.Server.MapPath(path); if (!Directory.Exists(t_path)) { Directory.CreateDirectory(t_path); } } private static string CreateFileName( string name, string ext) { string filename = "/Upload/" + DateTime.Now.ToString( "yyyy/MM/dd" ) + "/" + ext + "/" + (autonamed ? DateTimeStamp() + "." + ext : name); if (File.Exists(HttpContext.Current.Server.MapPath(filename))) { return CreateFileName(name, ext); } else { return filename; } } private static string SaveAs(HttpPostedFile file, string Ext) { string filename = CreateFileName(file.FileName, Ext); CreateFolder(Regex.Match(filename, @"^[\s\S]*?(?=[^\\/]+$)" ).Value); file.SaveAs(HttpContext.Current.Server.MapPath(filename)); return Regex.Match(HttpContext.Current.Request.Url.ToString(), @"^[\s\S]*?(?=(?<!/)/(?!/))" ).Value + filename; } private static void SaveInvalid(HttpPostedFile file) { } // 每次提交之前调用此方法,确认返回内容正确 public static void Clear() { script = string .Empty; } public static void Save(HttpPostedFile file) { if (file.ContentLength == 0) { if (file.FileName.Length > 0) { script += (script.Length > 0 ? "," : "" ) + "{filename:'" + file.FileName + "',upload:false,length:0,target:null,type:''}" ; } } else { if (Regex.IsMatch(file.ContentType, @"^image/" )) { string ext = ImageType(file.InputStream); if ( string .IsNullOrEmpty(ext)) { SaveInvalid(file); script += (script.Length > 0 ? "," : "" ) + "{filename:'" + file.FileName + "',upload:false,length:" + file.ContentLength + ",target:null,type:''}" ; } else { string filename = SaveAs(file, ext); script += (script.Length > 0 ? "," : "" ) + "{filename:'" + file.FileName + "',upload:true,length:" + file.ContentLength + ",target:'" + filename + "',type:'" + ext + "'}" ; } } else if (Regex.IsMatch(file.ContentType, @"^text/" )) { } else { string ext = FileType(file.InputStream); if ( string .IsNullOrEmpty(ext)) { SaveInvalid(file); script += (script.Length > 0 ? "," : "" ) + "{filename:'" + file.FileName + "',upload:false,length:" + file.ContentLength + ",target:null,type:'',header:[" + "" + "]}" ; } else { string filename = SaveAs(file, ext); script += (script.Length > 0 ? "," : "" ) + "{filename:'" + file.FileName + "',upload:true,length:" + file.ContentLength + ",target:'" + filename + "',type:'" + ext + "'}" ; } } } } } |
调用页面:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System; using System.Web; public partial class _Default : System.Web.UI.Page { protected void Page_Load( object sender, EventArgs e) { HttpFileCollection files = Request.Files; FileUpload.Clear(); for ( int i = 0; i < files.Count; i++) { FileUpload.Save(files[i]); } Response.Write(FileUpload.Script); } } |
功能至此完成,读者还可以根据自身需要进一步作出修改与完善。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式