BZIP2,全稱"Burrows-Wheeler Block Sort Text Compressor",是一種用於Unix和Linux系統的文件壓縮工具。 它使用.bz2擴展名的較小文件。 它因高壓縮效率而受到青睞,並常用於軟體分發和資料歸檔。
BZIP2在壓縮文字資料上特別有效,解壓速度也相對較快。
using IronZip;
// Create an empty BZIP2
using (var archive = new IronBZip2Archive())
{
// Add a text file to the BZIP2
archive.Add("./assets/sample.txt");
// Export the BZIP2 file
archive.SaveAs("output.txt.bz2");
}
Imports IronZip
' Create an empty BZIP2
Using archive = New IronBZip2Archive()
' Add a text file to the BZIP2
archive.Add("./assets/sample.txt")
' Export the BZIP2 file
archive.SaveAs("output.txt.bz2")
End UsingBZIP2,全稱"Burrows-Wheeler Block Sort Text Compressor",是一種用於Unix和Linux系統的文件壓縮工具。 它使用.bz2擴展名的較小文件。 它因高壓縮效率而受到青睞,並常用於軟體分發和資料歸檔。
BZIP2在壓縮文字資料上特別有效,解壓速度也相對較快。
Nuget Downloads 23,187|版本:2026.9剛剛發布