当前位置:首页 » 文件管理 » sharpziplib解压rar

sharpziplib解压rar

发布时间: 2024-12-21 22:03:21

❶ 3个超实用的.Net解压缩库,Github上大放异彩!🔥🔥🔥

1、SharpZipLib:这是一个由C#开发的全面开源且免费的解压缩库,支持Zip,GZip,Tar和BZip2等格式,广泛应用于.NET项目中。无需依赖第三方,性能接近系统级,提供了多种压缩与解压缩功能,包括读取和解压zip文件、写入zip文件、解压GZip文件、读取和解压tar文件等。

2、sharpcompress:纯C#压缩库,支持.NET Standard 2.0、2.1、.NET Core 3.1和.NET 5.0,提供了zip、tar、bzip2、gzip、lzip等格式的解压缩功能,扩展了对rar、7zip、zip、tar、bzip2、gzip和lzip文件的解压缩能力。

3、DotNetZip:专注ZIP文件处理的开源.NET库。具备丰富的ZIP文件操作功能,如读取、写入、修改、加密等,操作简单且支持多种编程语言,如C#、VB.NET等。广泛兼容.NET Framework、.NET Core,并支持控制台、Winforms、WPF、ASP.NET、Sharepoint、Web服务应用等。功能包括zip密码、Unicode、ZIP64、流输入和输出、AES加密、多个压缩级别、自解压缩存档以及跨区存档等。

SharpZipLib、sharpcompress和DotNetZip,三大.NET解压缩利器,满足不同需求,提供跨平台、高性能、易用性与多功能性,是开发者构建高效、可靠的.NET应用不可或缺的工具。了解更多详情,欢迎探索。

❷ VB 压缩或解压文件

在VB中用shell调用winrar目录中的rar.exe(压缩)或unrar.exe(解压缩)即可。具体参数看winrar的说明。
可以把rar.exe、unrar.exe这两个文件复制到自己程序所在目录,以方便使用。
例如解压缩123.rar文件:
shell "unrar.exe x -inul 123.rar",vbhide

❸ SharpZipLib压缩文件,解压zip文件时出现:文件末端错误

SharpZipLib压缩文件,解压zip文件时出现:文件末端错误
解决:在ZipOutputStream.Close()之后,它的输出流数据才完整,因此在ZipOutputStream.Close()之后再来获取数据。

原因分析:调用zipStream.Close()将会调用ZipStream.Finish() ,Finish说明:Finishes the stream. This will write the central directory at the end of the zip file and flush the stream.它将会写入部分数据,这样zip才是完整的。

❹ c#压缩解压 文件夹

我在做项目的时候需要将文件进行压缩和解压缩,于是就从http://www.icsharpcode.net下载了关于压缩和解压缩的源码,但是下载下来后,面对这么多的代码,一时不知如何下手。只好耐下心来,慢慢的研究,总算找到了门路。针对自己的需要改写了文件压缩和解压缩的两个类,分别为ZipClass和UnZipClass。其中碰到了不少困难,就决定写出来压缩和解压的程序后,一定把源码贴出来共享,让首次接触压缩和解压缩的朋友可以少走些弯路。下面就来解释如何在C#里用http://www.icsharpcode.net下载的SharpZipLib进行文件的压缩和解压缩。

首先需要在项目里引用SharpZipLib.dll。然后修改其中的关于压缩和解压缩的类。实现源码如下:

/// <summary>
/// 压缩文件
/// </summary>

using System;
using System.IO;

using ICSharpCode.SharpZipLib.Checksums;
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.GZip;

namespace Compression
{
public class ZipClass
{

public void ZipFile(string FileToZip, string ZipedFile ,int CompressionLevel, int BlockSize)
{
//如果文件没有找到,则报错
if (! System.IO.File.Exists(FileToZip))
{
throw new System.IO.FileNotFoundException("The specified file " + FileToZip + " could not be found. Zipping aborderd");
}

System.IO.FileStream StreamToZip = new System.IO.FileStream(FileToZip,System.IO.FileMode.Open , System.IO.FileAccess.Read);
System.IO.FileStream ZipFile = System.IO.File.Create(ZipedFile);
ZipOutputStream ZipStream = new ZipOutputStream(ZipFile);
ZipEntry ZipEntry = new ZipEntry("ZippedFile");
ZipStream.PutNextEntry(ZipEntry);
ZipStream.SetLevel(CompressionLevel);
byte[] buffer = new byte[BlockSize];
System.Int32 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(System.Exception ex)
{
throw ex;
}
ZipStream.Finish();
ZipStream.Close();
StreamToZip.Close();
}

public void ZipFileMain(string[] args)
{
string[] filenames = Directory.GetFiles(args[0]);

Crc32 crc = new Crc32();
ZipOutputStream s = new ZipOutputStream(File.Create(args[1]));

s.SetLevel(6); // 0 - store only to 9 - means best compression

foreach (string file in filenames)
{
//打开压缩文件
FileStream fs = File.OpenRead(file);

byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
ZipEntry entry = new ZipEntry(file);

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 = fs.Length;
fs.Close();

crc.Reset();
crc.Update(buffer);

entry.Crc = crc.Value;

s.PutNextEntry(entry);

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

}

s.Finish();
s.Close();
}
}
}

现在再来看看解压文件类的源码

/// <summary>
/// 解压文件
/// </summary>

using System;
using System.Text;
using System.Collections;
using System.IO;
using System.Diagnostics;
using System.Runtime.Serialization.Formatters.Binary;
using System.Data;

using ICSharpCode.SharpZipLib.BZip2;
using ICSharpCode.SharpZipLib.Zip;
using ICSharpCode.SharpZipLib.Zip.Compression;
using ICSharpCode.SharpZipLib.Zip.Compression.Streams;
using ICSharpCode.SharpZipLib.GZip;

namespace DeCompression
{
public class UnZipClass
{
public void UnZip(string[] args)
{
ZipInputStream s = new ZipInputStream(File.OpenRead(args[0]));

ZipEntry theEntry;
while ((theEntry = s.GetNextEntry()) != null)
{

string directoryName = Path.GetDirectoryName(args[1]);
string fileName = Path.GetFileName(theEntry.Name);

//生成解压目录
Directory.CreateDirectory(directoryName);

if (fileName != String.Empty)
{
//解压文件到指定的目录
FileStream streamWriter = File.Create(args[1]+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();
}
}
}

有了压缩和解压缩的类以后,就要在窗体里调用了。怎么?是新手,不会调用?Ok,接着往下看如何在窗体里调用。

首先在窗体里放置两个命令按钮(不要告诉我你不会放啊~),然后编写以下源码

/// <summary>
/// 调用源码
/// </summary>

private void button2_Click_1(object sender, System.EventArgs e)
{
string []FileProperties=new string[2];
FileProperties[0]="C:\\unzipped\\";//待压缩文件目录
FileProperties[1]="C:\\zip\\a.zip"; //压缩后的目标文件
ZipClass Zc=new ZipClass();
Zc.ZipFileMain(FileProperties);
}

private void button2_Click(object sender, System.EventArgs e)
{
string []FileProperties=new string[2];
FileProperties[0]="C:\\zip\\test.zip";//待解压的文件
FileProperties[1]="C:\\unzipped\\";//解压后放置的目标目录
UnZipClass UnZc=new UnZipClass();
UnZc.UnZip(FileProperties);
}

好了,到此为止,如何压缩和解压缩的类都已经完成了,需要的朋友直接拿走调吧。

热点内容
canvas压缩上传图片 发布:2024-12-22 08:53:47 浏览:188
加工中心简单图案编程 发布:2024-12-22 08:38:12 浏览:446
psp和安卓手机比哪个好 发布:2024-12-22 08:37:14 浏览:232
沙鹰行动迅雷下载ftp 发布:2024-12-22 08:30:03 浏览:383
mysql导入数据从java 发布:2024-12-22 08:20:19 浏览:73
内网通过外网ip访问内网服务器 发布:2024-12-22 08:20:08 浏览:839
安卓电视哪个系统最好 发布:2024-12-22 08:06:06 浏览:316
埃安y2022款买哪个配置 发布:2024-12-22 08:05:50 浏览:157
什么是邻接表存储法 发布:2024-12-22 08:04:58 浏览:398
奇迹2源码 发布:2024-12-22 07:52:19 浏览:165