解压rar @param rarFilePath 带解压压缩包列表 @param destDirPath 目标目录 @return 成功与否 @throws IOException IO错误抛出 @throws RarException IO错误抛出
(String rarFilePath, String destDirPath)
| 538 | * IO错误抛出 |
| 539 | */ |
| 540 | public static boolean unrarFile(String rarFilePath, String destDirPath) throws IOException, RarException { |
| 541 | return unrarFile(ToolFile.getFileByPath(rarFilePath), ToolFile.getFileByPath(destDirPath)); |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * 解压rar |
no test coverage detected