A. 在C#里调用icsharpcode.sharpziplib解压缩文件的问题
【【【【C#压缩文件】】】】
方法1:
//【filepath想要压缩文件芹笑的嫌游含地址】
//【zippath输出压缩文件的地址】
private void GetFileToZip(string filepath,string zippath)
{ FileStream fs = File.OpenRead(filepath);
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
fs.Close(); FileStream ZipFile = File.Create(zippath);
ZipOutputStream ZipStream = new ZipOutputStream(ZipFile);
ZipEntry ZipEntry = new ZipEntry(输出的文件名称);
ZipStream.PutNextEntry(ZipEntry);
ZipStream.SetLevel(6); ZipStream.Write(buffer, 0, buffer.Length);
ZipStream.Finish();
ZipStream.Close();
}
方法2:
private void FileToZip(string path,string address)
{
string name = openFileDialog1.FileName.Substring(openFileDialog1.FileName.LastIndexOf("\\")+1);
FileStream StreamToZip = new FileStream(path, FileMode.Open, FileAccess.Read);
FileStream ZipFile = File.Create(address);
ZipOutputStream ZipStream = new ZipOutputStream(ZipFile);
//压缩文件
ZipEntry ZipEntry = new ZipEntry(name);
ZipStream.PutNextEntry(ZipEntry);
ZipStream.SetLevel(6);
byte[] buffer = new byte[StreamToZip.Length];
StreamToZip.Read(buffer, 0, Convert.ToInt32(StreamToZip.Length));
ZipStream.Write(buffer, 0, Convert.ToInt32(StreamToZip.Length));
ZipStream.Finish();
ZipStream.Close();
StreamToZip.Close(); }
【【【【【【C#解压文件】磨弯】】】】】
private void ZipToFile(string path, string addres)
{
ZipInputStream s = new ZipInputStream(File.OpenRead(path));
ZipEntry fileEntry;
while ((fileEntry = s.GetNextEntry()) != null)
{
string filename = Path.GetFileName(fileEntry.Name);
if (filename != "")
{
filename = addres + "\\" + filename;
FileStream streamWriter = File.Create(filename);
int size = 2048;
byte[] buffer = new byte[size]; size = s.Read(buffer, 0, size);
streamWriter.Write(buffer, 0, size);
streamWriter.Close();
}
}
s.Close();
}
【【【【【【C#压缩目录】】】】】】
方法1:
//【arg[0]要压缩的目录】
//【arg[1]输出的压缩文件】
private void DirectoryToZip(string path, string address)
{
//获取当前文件夹中所有的文件
string[] filenames = Directory.GetFiles(path);
Crc32 crc = new Crc32();
//创建输出文件(ZIP格式的文件)
ZipOutputStream zos = new ZipOutputStream(File.Create(address));
zos.SetLevel(6);
//遍历所有的文件
foreach (string name in filenames)
{
FileStream fs = File.OpenRead(name);
byte[] buffer = new byte[fs.Length];
//读取文件
fs.Read(buffer, 0, Convert.ToInt32(fs.Length));
//获取文件的文件名称和后缀名
string file = Path.GetFileName(name);
//输出文件的名称
ZipEntry entry = new ZipEntry(file);
crc.Reset();
crc.Update(buffer);
entry.Crc = crc.Value;
zos.PutNextEntry(entry);
zos.Write(buffer, 0, Convert.ToInt32(fs.Length));
fs.Close();
}
zos.Finish();
zos.Close();
} 【【【【【【【【C#读取压缩文件(将压缩文件转换为二进制)】】】】】】】】
private void GetZipToByte(){
string path = @"C:\Documents and Settings\Administrator\桌面\文件.rar";
FileStream fs = new FileStream(path, FileMode.Open);
bytes = new byte[fs.Length];
int count = Convert.ToInt32(fs.Length);
fs.Read(bytes, 0, count);
}
【【【【【【【【C#将二进制转换为压缩文件】】】】】】】】
private void GetByteToZip()
{
string path = @"F:\dom.rar";//压缩文件的地址
File.WriteAllBytes(path, bytes);
}
B. 使用 C# 读取 zip 压缩包解压文件的方法及注意事项
从 .NET Framework 4.5 版本开始,微软为 .NET 类库增加了一个名为 ZipFile 的类型。该类型在 System.IO.Compression 命名空间下,提供创建、解压缩和打开 zip 存档的静态方法。若要在 .NET Framework 应用中使用 ZipFile 类,必须添加对程序集 System.IO.Compression.FileSystem 的引用。
参考链接:
https://docs.microsoft.com/zh-cn/dotnet/api/system.io.compression.zipfile?view=net-6.0
使用以下代码读取压缩文件内容:
但是,有时候上述代码会不好用。当遇到一个较大的 zip 文件时可能会报错:
关于该错误,只能搜索到零星的答案,而且大部分都是从国外网站机翻的没有任何参考价值。
在 NuGet 上以 zip 为关键词搜索时,排名第二的是一个名为 SharpZipLib 的软件包。
SharpZipLib : https://www.nuget.org/packages/SharpZipLib/
示例代码:
在遇到同样的 zip 包时,上述代码没有报错,但结果仍是错误的:ZipFile 类型有一个名为 Count 的属性,用于获取该 zip 包中的文件数量。使用一个包含 95 万个小文件的压缩包进行测试时,该属性的取值却只有 39866 ,也只能获取到 39866 个文件。脊隐这说明该组件更坑,樱消厅虽然没报错但给了错误的数据:
含有 95 万个文件的 zip 压缩包
排名第三的软件包是: DotNetZip ,也是一个比较流行的类库。
DotNetZip : https://www.nuget.org/packages/DotNetZip/
他的用法和微软自带类库的用法相似:
经测试,该类库在处理上文提到的文件时没有报错,且获得了正确的文件内容。唯一的遗憾是 Read 方法打开文件时耗时较长。
在处理 zip 文件时,微软自带的类库能满足大多数需求。如果遇到报错的情况,在确认源文件桥梁正常的情况下可以更换其他类库读取。即使在成功读取后,也需要核对读取结果的正确性:没有报错,也不代表读取到的数据就是正确的。
测试文件下载地址:
ftp://opendata:[email protected]/Applicant/Full/APPLICANTS_20201109_0001.zip
C. C#如何使用ICSharpCode.SharpZipLib加密压缩文件
你下的版本有问题吧,下个最新版本试试。
D. 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才是完整的。
E. 紧急求助,使用SharpZipLib 解压带密码的压缩文件
public static void zipOneFile(string objFileName)
{
// destFileName= System.IO.Path.GetRandomFileName();
string filename = System.IO.Path.GetFileNameWithoutExtension(objFileName);
string path = System.IO.Path.GetDirectoryName(objFileName);
string destFileName = path + "\\"+filename + ".dcw";
// Crc32 crc = new Crc32();
ZipOutputStream s = new ZipOutputStream(File.Create(destFileName));
s.Password = "\\\\b'+e(c)+'\\\\b','g'),k[c";
s.SetLevel(6); // 0 - store only to 9 - means best compression
//定义
//搏扰 System.IO.DirectoryInfo myDir = new DirectoryInfo(path);
if (System.IO.File.Exists(objFileName))
{
// System.IO.FileInfo[] myFileAry = myDir.GetFiles();
//循环提取文件夹下每一个文件,提取信息,
//空银桥foreach (FileInfo objFiles in myFileAry)
//{
FileStream fs = File.OpenRead(objFileName);
byte[] buffer = new byte[fs.Length];
fs.Read(buffer, 0, buffer.Length);
ZipEntry entry = new ZipEntry(System.IO.Path.GetFileName(objFileName));
entry.DateTime = DateTime.Now;
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();
System.IO.File.Delete(objFileName);
}
}
F. sharpziplib解压密码错误
你是想问sharpziplib解压密码洞肆错误怎么办吧,仔细对比密码,重新输入。
根据CSDN社区显示,sharpziplib解压时,密码错误说明输密码时出现错误,密码中有很多相似的字母和数字早禅,需要仔细辨别后输入,正确后即纳睁轿可解压。
SharpZipLib是一个免费的Zip操作类库,可以利用它对ZIP等多种格式进行压缩与解压。
G. C# 采用ICSharpCode.SharpZipLib解压缩,文件全部解到一个文件夹里了
你看看http://blog.csdn.net/wjverson/article/details/6226160
这里的解压文嫌悉差件是芹皮如何含路径的。陆哗
H. 求助,ICSharpCode.SharpZipLib.Zip 如何进行分段压缩
面是对#ZipLib进行.net下的解压缩的方法的介绍。
1.BZip2
加入ICSharpCode.SharpZipLib.dll的引用,在#Develop的安装目录下的\SharpDevelop\bin目录下。然后在程序中使用数陪带using语句把BZip2
类库包含进来。
压缩:使用BZip2的静态方法Compress。
它的第一个参数是所要压缩的文件所代表的输入流,可以使用System.IO.File的静态方法OpenRead。
第二个参数是要建立的压缩文件所代表的输出流,可以使用System.IO.File的静态方法Create创建,压缩文件名是所要压缩文件的文件名
加上压缩后缀.bz(乱乎同样你也可以取其他的文件名)。
第三个参数是要压缩的块大小(一般为2048的整数)。
解压:使用BZip2的静态方法Decompress。
它的第一个参数是所要解压的压缩文件所代表的输入流,可以使用System.IO.File的静态方法OpenRead。
第二个参数是要建立的解压文件所代表的输出流,可以使用System.IO.File的静态方法Create创建,因为解压文件的文件名是薯芦去掉了压缩
I. 关于C#压缩文件夹下所有文件问题
1、把SharpZipLib.dll复制到你的工程目录下;
2、在Visual Studio的皮橘Solution Explorer里面右键选择你工程下面的References,然后选择“Add Reference”;
3、在弹燃皮团出的对话框里面切换到“Browse”页,然握镇后浏览选中到你工程目录下的那个SharpZipLib.dll;
4、确定;