ASP.NET 文件压缩解压类(C#)

2025-05-29 0 73

本文实例讲述了asp.net C#实现解压缩文件的方法,需要引用一个ICSharpCode.SharpZipLib.dll,供大家参考,具体如下:

?

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

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using ICSharpCode.SharpZipLib.Zip;

using System.IO;

using ICSharpCode.SharpZipLib.Checksums;

using System.Web;

namespace Mvc51Hiring.Common.Tool

{

/// <summary> <br> /// 作者:来自网格<br> /// 修改人:sunkaixaun

/// 压缩和解压文件

/// </summary>

public class ZipClass

{

/// <summary>

/// 所有文件缓存

/// </summary>

List<string> files = new List<string>();

/// <summary>

/// 所有空目录缓存

/// </summary>

List<string> paths = new List<string>();

/// <summary>

/// 压缩单个文件根据文件地址

/// </summary>

/// <param name="fileToZip">要压缩的文件</param>

/// <param name="zipedFile">压缩后的文件全名</param>

/// <param name="compressionLevel">压缩程度,范围0-9,数值越大,压缩程序越高</param>

/// <param name="blockSize">分块大小</param>

public void ZipFile(string fileToZip, string zipedFile, int compressionLevel, int blockSize)

{

if (!System.IO.File.Exists(fileToZip))//如果文件没有找到,则报错

{

throw new FileNotFoundException("The specified file " + fileToZip + " could not be found. Zipping aborderd");

}

FileStream streamToZip = new FileStream(fileToZip, FileMode.Open, FileAccess.Read);

FileStream zipFile = File.Create(zipedFile);

ZipOutputStream zipStream = new ZipOutputStream(zipFile);

ZipEntry zipEntry = new ZipEntry(fileToZip);

zipStream.PutNextEntry(zipEntry);

zipStream.SetLevel(compressionLevel);

byte[] buffer = new byte[blockSize];

int size = streamToZip.Read(buffer, 0, buffer.Length);

zipStream.Write(buffer, 0, size);

try

{

while (size < streamToZip.Length)

{

int sizeRead = streamToZip.Read(buffer, 0, buffer.Length);

zipStream.Write(buffer, 0, sizeRead);

size += sizeRead;

}

}

catch (Exception ex)

{

GC.Collect();

throw ex;

}

zipStream.Finish();

zipStream.Close();

streamToZip.Close();

GC.Collect();

}

/// <summary>

/// 压缩目录(包括子目录及所有文件)

/// </summary>

/// <param name="rootPath">要压缩的根目录</param>

/// <param name="destinationPath">保存路径</param>

/// <param name="compressLevel">压缩程度,范围0-9,数值越大,压缩程序越高</param>

public void ZipFileFromDirectory(string rootPath, string destinationPath, int compressLevel)

{

GetAllDirectories(rootPath);

/* while (rootPath.LastIndexOf("\\\\") + 1 == rootPath.Length)//检查路径是否以"\\"结尾

{

rootPath = rootPath.Substring(0, rootPath.Length - 1);//如果是则去掉末尾的"\\"

}

*/

//string rootMark = rootPath.Substring(0, rootPath.LastIndexOf("\\\\") + 1);//得到当前路径的位置,以备压缩时将所压缩内容转变成相对路径。

string rootMark = rootPath + "\\\\";//得到当前路径的位置,以备压缩时将所压缩内容转变成相对路径。

Crc32 crc = new Crc32();

ZipOutputStream outPutStream = new ZipOutputStream(File.Create(destinationPath));

outPutStream.SetLevel(compressLevel); // 0 - store only to 9 - means best compression

foreach (string file in files)

{

FileStream fileStream = File.OpenRead(file);//打开压缩文件

byte[] buffer = new byte[fileStream.Length];

fileStream.Read(buffer, 0, buffer.Length);

ZipEntry entry = new ZipEntry(file.Replace(rootMark, string.Empty));

entry.DateTime = DateTime.Now;

// set Size and the crc, because the information

// about the size and crc should be stored in the header

// if it is not set it is automatically written in the footer.

// (in this case size == crc == -1 in the header)

// Some ZIP programs have problems with zip files that don't store

// the size and crc in the header.

entry.Size = fileStream.Length;

fileStream.Close();

crc.Reset();

crc.Update(buffer);

entry.Crc = crc.Value;

outPutStream.PutNextEntry(entry);

outPutStream.Write(buffer, 0, buffer.Length);

}

this.files.Clear();

foreach (string emptyPath in paths)

{

ZipEntry entry = new ZipEntry(emptyPath.Replace(rootMark, string.Empty) + "/");

outPutStream.PutNextEntry(entry);

}

this.paths.Clear();

outPutStream.Finish();

outPutStream.Close();

GC.Collect();

}

/// <summary>

/// 多文件打包下载

/// </summary>

public void DwonloadZip(string[] filePathList, string zipName)

{

MemoryStream ms = new MemoryStream();

byte[] buffer = null;

var context = HttpContext.Current;

using (ICSharpCode.SharpZipLib.Zip.ZipFile file = ICSharpCode.SharpZipLib.Zip.ZipFile.Create(ms))

{

file.BeginUpdate();

file.NameTransform = new MyNameTransfom();//通过这个名称格式化器,可以将里面的文件名进行一些处理。默认情况下,会自动根据文件的路径在zip中创建有关的文件夹。

foreach (var it in filePathList)

{

file.Add(context.Server.MapPath(it));

}

file.CommitUpdate();

buffer = new byte[ms.Length];

ms.Position = 0;

ms.Read(buffer, 0, buffer.Length);

}

context.Response.AddHeader("content-disposition", "attachment;filename=" + zipName);

context.Response.BinaryWrite(buffer);

context.Response.Flush();

context.Response.End();

}

/// <summary>

/// 取得目录下所有文件及文件夹,分别存入files及paths

/// </summary>

/// <param name="rootPath">根目录</param>

private void GetAllDirectories(string rootPath)

{

string[] subPaths = Directory.GetDirectories(rootPath);//得到所有子目录

foreach (string path in subPaths)

{

GetAllDirectories(path);//对每一个字目录做与根目录相同的操作:即找到子目录并将当前目录的文件名存入List

}

string[] files = Directory.GetFiles(rootPath);

foreach (string file in files)

{

this.files.Add(file);//将当前目录中的所有文件全名存入文件List

}

if (subPaths.Length == files.Length && files.Length == 0)//如果是空目录

{

this.paths.Add(rootPath);//记录空目录

}

}

/// <summary>

/// 解压缩文件(压缩文件中含有子目录)

/// </summary>

/// <param name="zipfilepath">待解压缩的文件路径</param>

/// <param name="unzippath">解压缩到指定目录</param>

/// <returns>解压后的文件列表</returns>

public List<string> UnZip(string zipfilepath, string unzippath)

{

//解压出来的文件列表

List<string> unzipFiles = new List<string>();

//检查输出目录是否以“\\\\”结尾

if (unzippath.EndsWith("\\\\") == false || unzippath.EndsWith(":\\\\") == false)

{

unzippath += "\\\\";

}

ZipInputStream s = new ZipInputStream(File.OpenRead(zipfilepath));

ZipEntry theEntry;

while ((theEntry = s.GetNextEntry()) != null)

{

string directoryName = Path.GetDirectoryName(unzippath);

string fileName = Path.GetFileName(theEntry.Name);

//生成解压目录【用户解压到硬盘根目录时,不需要创建】

if (!string.IsNullOrEmpty(directoryName))

{

Directory.CreateDirectory(directoryName);

}

if (fileName != String.Empty)

{

//如果文件的压缩后大小为0那么说明这个文件是空的,因此不需要进行读出写入

if (theEntry.CompressedSize == 0)

break;

//解压文件到指定的目录

directoryName = Path.GetDirectoryName(unzippath + theEntry.Name);

//建立下面的目录和子目录

Directory.CreateDirectory(directoryName);

//记录导出的文件

unzipFiles.Add(unzippath + theEntry.Name);

FileStream streamWriter = File.Create(unzippath + theEntry.Name);

int size = 2048;

byte[] data = new byte[2048];

while (true)

{

size = s.Read(data, 0, data.Length);

if (size > 0)

{

streamWriter.Write(data, 0, size);

}

else

{

break;

}

}

streamWriter.Close();

}

}

s.Close();

GC.Collect();

return unzipFiles;

}

}

public class MyNameTransfom : ICSharpCode.SharpZipLib.Core.INameTransform

{

#region INameTransform 成员

public string TransformDirectory(string name)

{

return null;

}

public string TransformFile(string name)

{

return Path.GetFileName(name);

}

#endregion

}

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。 

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 ASP.NET 文件压缩解压类(C#) https://www.kuaiidc.com/99984.html

相关文章

发表评论
暂无评论