導航:首頁 > 文件處理 > gz壓縮

gz壓縮

發布時間:2022-02-14 12:14:48

1. Windows下如何將文件打包壓縮成 .tar.gz格式

Windows下將文件打包壓縮成 .tar.gz格式步驟如下:

1、網路搜索7-zip,第一個條目,下載並安裝。

2. linux解壓.gz的命令是什麼

3. linux中gz文件是壓縮文件嗎

如果是.gz壓縮包(不帶tar),用gzip命令即可(-d選項可以解壓),格式是
gzip 壓縮包名(包括後面的.gz) -d 解壓位置
如果不指定解壓位置,將解壓到當前工作文件夾

如果是.tar.gz壓縮包,需要使用tar命令的-z和-f選項(解壓需要-x),格式
tar -zxf 壓縮包名(包括後面的.tar.gz) -C 解壓位置
注意後面的-C是大寫C,如果不指定解壓位置需要去掉-C,系統會把壓縮包中所有文件解壓到當前工作文件夾

更多內容請在網路查找gzip命令、bzip2命令、tar命令

如果你是在XWindow桌面環境操作,而不是在命令行,一般可以直接在任何壓縮包上右鍵單擊選擇解包(.rar包除外,需要rarlinux軟體包支持)

4. linux把文件壓縮成.tar.gz的命令

1、連接上相應的linux主機,進入到等待輸入shell指令的linux命令行狀態下。

5. 如何解壓縮.gz文件

public static void makeZip(List<File> fileList,String zipPath,boolean isDelete) {
byte[] buf = new byte[1024];
try {
// Create the ZIP file
File zipFile = new File(zipPath);
ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFile));
// Compress the files
for (int i = 0; i < fileList.size(); i++) {
FileInputStream in = new FileInputStream(fileList.get(i));
// Add ZIP entry to output stream.
out.putNextEntry(new ZipEntry(fileList.get(i).getName()));
// Transfer bytes from the file to the ZIP file
int len;
while ( (len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
// Complete the entry
out.closeEntry();
in.close();
}
// Complete the ZIP file
out.close();
System.out.println("壓縮完成.");

//把舊的文件刪除
if(isDelete == true){
for (int i = 0; i < fileList.size(); i++) {
File oldFile = fileList.get(i);
oldFile.delete();
}
}
}
catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args){
File in1=new File("D:\\a.txt");
File in2=new File("D:\\b.txt");
File[] file=new File[]{in1,in2};
File zip=new File("D:\\ab.zip");
IDMZip mgr=new IDMZip();
mgr.ZipFiles(file, zip);
}

這個方法不管你是在windows下還是在linux下,都能正常執行。
追問
謝謝,但是我是要解壓這樣20140718_185819.data.tar.gz 不是zip的

回答
你可以試試。還有這個方法。都是我項目里曾經用到過的。都是可用的。
public static List unZip(String path) throws FileNotFoundException,
IOException {
path = path.replaceAll("\\\\","/");
String zipPath = path.substring(0,path.lastIndexOf("/")+1);
List xmlFileNameList = new ArrayList();
byte[] data = new byte[1024*2];
FileInputStream fis = new FileInputStream(path);
ZipInputStream zis = new ZipInputStream(fis);
ZipEntry entry = null;
while((entry = zis.getNextEntry())!= null){
if(entry.isDirectory()){
File file = new File(zipPath+entry.getName());
file.mkdirs();
continue;
}

6. 如何把文件壓縮成tar.gz

tar.gz是linux/unix下的壓縮格式.
在windows可以用winrar解壓縮.
你要把文件壓縮成tar.gz就只有在linux/unix這樣的操作系統下進行.
使用tar命令就可以實現

7. gz後綴怎麼解壓

1、在Windows系統環境下,安裝解壓軟體

8. 把文件壓縮成gz文件用什麼工具壓縮

需要使用winrar或者7_zip壓縮工具,如果你已經安裝了應該會自動關聯到滑鼠右鍵的。以winrar為例:
選中你要壓縮的文件,右鍵選擇添加到檔案文件(如果是7zip則是添加到壓縮文件),然後命名壓縮文件,注意後綴為.gz,格式選擇正常,開始壓縮就可以了,如果是7zip的話也差不多,希望能幫到你。

9. 關於壓縮文件格式(gz和rar)

不能,win下rar的壓縮演算法和linux下gz不同所以不能解壓
linux下,默認是沒有解壓縮rar格式的軟體的,需要上網下載插件,安裝rarlinux http://download.pchome.net/php/dl.php?sid=33101
下載了rarlinux-3.6.0.tar.gz之後,運行命令"tar zxvf rarlinux-3.6.0.tar.gz",會解出一個文件夾,裡面有相關使用說明。
linux默認會把用戶安裝的軟體放到「/usr/local」下面

10. 怎樣在linux下對目錄進行壓縮生成gz文件

在linux下,使用gzip命令可以對目錄壓縮生成gz文件,具體步驟如下:

1、首先,連接相應linux主機,進入到linux命令行狀態下,等待輸入shell指令。

閱讀全文

與gz壓縮相關的資料

熱點內容
阿里備案買什麼伺服器 瀏覽:261
網路驅動下載到哪個文件夾 瀏覽:481
達內程序員培訓西安 瀏覽:505
人保送車主惠app上怎麼年檢 瀏覽:604
android手機開機密碼 瀏覽:480
linux查看某個進程命令 瀏覽:529
閑置的騰訊雲伺服器 瀏覽:437
rar壓縮包mac 瀏覽:626
php混淆加密工具 瀏覽:581
java把數字拆分 瀏覽:464
如何下載svn伺服器舊版本 瀏覽:559
命令與征服4攻略 瀏覽:914
實數四則運演算法則概念 瀏覽:295
cs16優化命令 瀏覽:873
Minecraft雲伺服器免費 瀏覽:829
png壓縮最小 瀏覽:184
老韓綜app怎麼看不了了 瀏覽:229
只有一個程序員的體驗 瀏覽:323
用伺服器地址怎麼有網 瀏覽:552
路由器伺服器昵稱是什麼 瀏覽:715