java解壓RAR壓縮檔

來源:互聯網
上載者:User

       最近在看java解壓縮,發現RAR沒有公開密碼編譯演算法,所以java內部沒有提供api解壓,當時就覺得鬱悶的,結果在網上查閱了一些,發現了一個思路,就是可以調用系統的命令解壓檔案,下面是解壓的RAR檔案的方法

 

package zip;import java.io.BufferedReader;import java.io.File;import java.io.IOException;import java.io.InputStreamReader;/** * 解壓rar檔案 * 注意:因為rar演算法沒有公開,我們只能在程式中調用系統安裝的rar來解壓(系統中必須安裝winRAR) * @author spring sky * Emal: vipa1888@163.com * QQ: 840950105 * My Name :石明政 */public class UnRARFile {/** * 系統安裝的winRAR位置 */private static final String WINRAR_PATH = "C:\\Program Files\\WinRAR\\WinRAR.exe";  /** * 解壓方法 * @param rarFilePath   rar壓縮檔的路徑 * @param unFilePath    要解壓到指定的路徑 * @throws IOException  IO異常 */public static void unRARFile(String rarFilePath,String unFilePath) throws IOException{File f = new File(unFilePath);if(!f.exists())  //如果發現指定解壓的路徑不存在,建立目錄{f.mkdirs();}String cmd = WINRAR_PATH + " x -r -p -o " + rarFilePath+ " " + unFilePath;  //需要執行的命令 Runtime runtime = Runtime.getRuntime();  //得到命令對象Process process = runtime.exec(cmd);   //擷取執行命令過程中返回的流/** * 下面是列印出流的內容,查看是否有異常 */InputStreamReader isr = new InputStreamReader(process.getInputStream()); BufferedReader br = new BufferedReader(isr);String str = null;while((str=br.readLine())!=null){if(!"".equals(str.trim())&&str!=null)  //如果當前行不為空白{System.out.println(str);}}br.close();}

測試類別:

 

 

/** * 測試 * @param args */public static void main(String[] args) {String rarPath = "d:\\a.rar";String unRarPath = "d:\\abc";try {UnRARFile.unRARFile(rarPath, unRarPath);} catch (IOException e) {System.out.println("出現異常....");e.printStackTrace();}}

 

需要注意的是:運行程式下面的彈出框

 

 

如果沒有加密的話,那就直接點擊確定就可以了,如果加密就要求輸入密碼解壓,直接輸入密碼就可以解壓檔案了 .....

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.