B. 壓縮文件怎麼解壓打開
以下是解壓文件的步驟,操作方法如下。
設備:小米筆記本Air12
系統:寬脊windows10家庭中文版
軟體:快慎擾滲壓3.3
1、首先打開電腦之後,找到自己需要解壓的壓縮文件。
C. 怎樣把桌面上的文件夾解壓到d盤
1、把桌面上的文件羨配信夾解壓到d盤步驟:首先在d盤建立以空白文件夾,將它重命名為桌面。然後右擊收藏夾里的桌面賣桐。
然後點擊剪貼或者直接ctrl+x。
2、再打開你剛在d盤新建的桌面文件夾,右擊黏貼或者ctrl+v即兄輪可,這樣你的桌面就移到d盤了。
D. 如何解壓文件 解壓文件的方法介紹
1、電腦文件解壓的方法(以電腦Windows10系統為例):
(1)首先打開電腦的資源管理器,然後找到所需要解壓的文件位置。
(2)滑鼠游標選中所需要解壓的文件,然後右擊滑鼠,單擊「解壓文件」對文件進行解壓。
(3)如果解壓失敗,說明電腦沒有自帶的解壓軟體,這時需要去瀏覽器里下載一款安全無毒的解壓軟體。
(4)如果電腦上有解壓軟體,則會跳到解壓軟體的界面中,之後在解壓軟體的界面找到並點擊「解壓到」選項。
(5)然後在彈出來的界面選擇解壓縮的位置,點擊「立即解壓」即可(如果需要密碼,則需要輸入正確的解壓密碼)。
2、手機文件解壓的方法(以華為P40手機,EMUI10系統為例):
(1)打開手機自帶的「文件管理」功能。
(2)在文件管理中找到「壓縮包」選項。
(3)進入之後,找到想要解壓的壓縮包並長按選中,然後選擇想要解壓到的位置。
(4)點擊之後如果顯示需要密碼,則需要輸入正確的解壓密碼才能解壓成功。
E. java中怎麼解壓rar文件 到指定文件目錄中
1.代碼如下:
[java] view plain
<span style="font-size:18px;background-color: rgb(204, 204, 204);">package cn.gov.csrc.base.util;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
/**
* 將文件夾下面的文件
* 打包成zip壓縮文件
*
* @author admin
*
*/
public final class FileToZip {
private FileToZip(){}
/**
* 將存放在sourceFilePath目錄下的源文件,打包成fileName名稱的zip文件,並存放到zipFilePath路徑下
* @param sourceFilePath :待壓縮的文件路徑
* @param zipFilePath :壓縮後存放路徑
* @param fileName :壓縮後文件的名稱
* @return
*/
public static boolean fileToZip(String sourceFilePath,String zipFilePath,String fileName){
boolean flag = false;
File sourceFile = new File(sourceFilePath);
FileInputStream fis = null;
BufferedInputStream bis = null;
FileOutputStream fos = null;
ZipOutputStream zos = null;
if(sourceFile.exists() == false){
System.out.println("待壓縮的文件目錄:"+sourceFilePath+"不存在.");
}else{
try {
File zipFile = new File(zipFilePath + "/" + fileName +".zip");
if(zipFile.exists()){
System.out.println(zipFilePath + "目錄下存在名字為:" + fileName +".zip" +"打包文件.");
}else{
File[] sourceFiles = sourceFile.listFiles();
if(null == sourceFiles || sourceFiles.length<1){
System.out.println("待壓縮的文件目錄:" + sourceFilePath + "裡面不存在文件,無需壓縮.");
}else{
fos = new FileOutputStream(zipFile);
zos = new ZipOutputStream(new BufferedOutputStream(fos));
byte[] bufs = new byte[1024*10];
for(int i=0;i<sourceFiles.length;i++){
//創建ZIP實體,並添加進壓縮包
ZipEntry zipEntry = new ZipEntry(sourceFiles[i].getName());
zos.putNextEntry(zipEntry);
//讀取待壓縮的文件並寫進壓縮包里
fis = new FileInputStream(sourceFiles[i]);
bis = new BufferedInputStream(fis, 1024*10);
int read = 0;
while((read=bis.read(bufs, 0, 1024*10)) != -1){
zos.write(bufs,0,read);
}
}
flag = true;
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
throw new RuntimeException(e);
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e);
} finally{
//關閉流
try {
if(null != bis) bis.close();
if(null != zos) zos.close();
} catch (IOException e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}
}
return flag;
}
public static void main(String[] args){
String sourceFilePath = "D:\\TestFile";
String zipFilePath = "D:\\tmp";
String fileName = "12700153file";
boolean flag = FileToZip.fileToZip(sourceFilePath, zipFilePath, fileName);
if(flag){
System.out.println("文件打包成功!");
}else{
System.out.println("文件打包失敗!");
}
}
}
</span>
2.結果如下:
文件打包成功!
3.到D:/tmp下查看,你會發現生成了一個zip壓縮包.
F. 如何解壓文件到指定文件夾
首先在壓縮包文件所在的文件夾內新建一個文件夾,在空白處點擊滑鼠右鍵,彈出下拉菜單,選擇【新建】-【文件夾】選項。
新建文件夾創立完畢後,重命名該文件夾
然後選擇要解壓的壓縮包文件,點擊滑鼠右鍵,彈出下拉菜單,在下拉菜單內可以看到三種解壓方式,
點擊下拉菜單里的【解壓文件】,上圖標紅框選項,彈出解壓路徑和選項窗口
然後在右側的存儲路徑內找到剛才新建的文件夾並選擇將壓縮包文件解壓到該文件夾內
路徑選擇完畢後,點擊【確定】按鈕,即可將壓縮包文件解壓到指定文件夾了。