中文字幕日韩一区二区_国产一区二区av_国产毛片av_久久久久国产一区_色婷婷电影_国产一区二区精品

asp.net SharpZipLib的壓縮與解壓問題

我使用SharpZipLib.dll中遇到的問題是:利用SharpZipLib壓縮后生成的*.rar文件,利用其可以正常解壓,但如果使用文件右擊壓縮生成的*.RAR文件,在解壓過程中出錯,具體報錯信息:Wrong Local header signature: 0x21726152 ;但*.zip文件可正常解壓。
具體壓縮、解壓代碼實現參照網絡上的代碼,貼出概要代碼:
復制代碼 代碼如下:
/// <summary>
/// 壓縮文件
/// </summary>
/// <param name="sourceFilePath">源文件路徑</param>
/// <param name="destinationPath">壓縮文件后的保存路徑</param>
/// <returns>壓縮是否成功</returns>
public bool Compress(string sourceFilePath, string destinationPath)
{
try
{
string[] filenames = Directory.GetFiles(sourceFilePath);
using (ZipOutputStream zs = new ZipOutputStream(File.Create(destinationPath)))
{
zs.SetLevel(9);
byte[] buffer = new byte[4096];
foreach (string file in filenames)
{
ZipEntry entry = new ZipEntry(Path.GetFileName(file));
entry.DateTime = DateTime.Now;
zs.PutNextEntry(entry);
using (FileStream fs = File.OpenRead(file))
{
int sourceBytes;
do
{
sourceBytes = fs.Read(buffer, 0, buffer.Length);
zs.Write(buffer, 0, sourceBytes);
}
while (sourceBytes > 0);
}
}
zs.Finish();
zs.Flush();
zs.Close();
}
}
catch (Exception)
{
return false;
}
return true;
} public bool DeCompress(string sourceFilePath, string destinationPath)
{
try
{
using (ZipInputStream zs = new ZipInputStream(File.OpenRead(sourceFilePath)))
{
ZipEntry entry = null;
//解壓縮*.rar文件運行至此處出錯:Wrong Local header signature: 0x21726152,解壓*.zip文件不出錯
while ((entry = zs.GetNextEntry()) != null)
{
string directoryName = Path.GetDirectoryName(entry.Name);
string fileName = Path.GetFileName(entry.Name);
if (!string.IsNullOrEmpty(fileName))
{
using (FileStream streamWriter = File.Create(destinationPath + entry.Name))
{
int size = 2048;
byte[] data = new byte[size];
while (true)
{
size = zs.Read(data, 0, data.Length);
if (size > 0)
{
streamWriter.Write(data, 0, size);
}
else
{
break;
}
}
}
}
}
}
}
catch (System.Exception)
{
return false;
}
return true;
}

如果需解壓*.rar的壓縮文件在網絡也可以找到相關的實現代碼,概要代碼:
復制代碼 代碼如下:
public bool DeCompressRAR(string sourceFilePath, string destinationPath)
{
try
{
string SeverDir = @"D:/Program Files/WinRAR";//rar.exe的要目錄
Process ProcessDecompression = new Process();
ProcessDecompression.StartInfo.FileName = SeverDir + "http://rar.exe";
Directory.CreateDirectory(sourceFilePath);
ProcessDecompression.StartInfo.Arguments = " X " + sourceFilePath + " " + destinationPath;
ProcessDecompression.Start();
while (!ProcessDecompression.HasExited)
{
//nothing to do here.
}
return true;
}
catch (System.Exception)
{
return false;
}
}

我本想利用FileUpload控件將上傳的壓縮文件解壓后保存至相對應的目錄并更新數據庫文件目錄,后發現一些較好的用于上傳的開源軟件:如NeatUpload,SWFUpload可以較方便的實現我的需求,遂沒有過多糾纏于SharpZipLib,可能關于SharpZipLib的壓縮與解壓有其它用法,不能被我誤導,以上代碼是從網絡上整合出來的,因為它太過于重復和散亂。

AspNet技術asp.net SharpZipLib的壓縮與解壓問題,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 国产精品伦理一区二区三区 | 精品国产亚洲一区二区三区大结局 | 国产日韩一区二区三免费 | 日韩和的一区二在线 | 日韩电影中文字幕 | 国产剧情一区 | 欧美日韩高清 | 亚洲另类视频 | 色频 | 亚洲在线免费 | 久久久久9999亚洲精品 | 国产精品日产欧美久久久久 | 久久久精品久 | 欧美日韩亚洲一区 | 免费毛片网 | 欧美亚洲一区二区三区 | 在线成人av | 久久久久久成人网 | 国产精品视频在线播放 | 999久久久国产精品 欧美成人h版在线观看 | 91麻豆精品国产91久久久久久久久 | 一级黄大片| 久久综合九九 | 亚洲一区二区三区免费在线观看 | 日韩视频在线免费观看 | 精品国产一级片 | 国产一级久久久久 | 日韩在线综合网 | 91久久精品 | 亚洲高清成人在线 | 欧美日韩中文在线观看 | 国产91观看 | xxx视频| 欧美成人视屏 | 在线视频99 | 中文字幕一区在线 | 在线视频中文字幕 | 超碰成人免费 | 伊人天堂网 | 久久久久久久久久久久91 | 亚洲一区二区中文字幕在线观看 |