最近在看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();}}
需要注意的是:運行程式下面的彈出框
如果沒有加密的話,那就直接點擊確定就可以了,如果加密就要求輸入密碼解壓,直接輸入密碼就可以解壓檔案了 .....