tar -cvf abc.tar abc
把abc這個目錄打包,生成乙個檔案名字叫abc.tar
tar -xvf abc.tar
把abc.tar這個檔案中所有的檔案提取出來
tar只負責把多個檔案打包,而不負責壓縮
gzip abc.tar
把abc.tar檔案壓縮為abc.tar.gz
gzip -d abc.tar.gz
把abc.tar.gz解壓
zip abc.zip abc.tar
把abc.tar壓縮為abc.zip
unzip abc.zip abc.tar
把abc.zip解壓為abc.tar
檔案壓縮解壓
壓縮檔案或目錄 param frompath 待壓縮檔案或路徑 param topath 壓縮檔案,不要是目錄,如 xx.zip public static void compress string frompath,string topath throws ioexception try file...
LINUX壓縮 解壓檔案
01 tar格式 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 注 tar是打包,不是壓縮!02 gz格式 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓 縮 gzip filename...
檔案壓縮與解壓
檔案的壓縮 1.讀取檔案的內容 2.統計每個字元出現的次數 int read while read bis.read 1 直至讀到檔案結束 arrays為運算元組的工具類 collections為操作集合工具類 bis.close 3.構建哈弗曼樹,生成哈夫曼編碼 if node.getleftno...