解压文件 @param zipFilePath 待解压文件路径 @param destDirPath 目标目录路径 @return true: 解压成功 false: 解压失败 @throws IOException IO错误时抛出
(String zipFilePath, String destDirPath)
| 320 | * IO错误时抛出 |
| 321 | */ |
| 322 | public static boolean unzipFile(String zipFilePath, String destDirPath) |
| 323 | throws IOException { |
| 324 | return unzipFile(ToolFile.getFileByPath(zipFilePath), ToolFile.getFileByPath(destDirPath)); |
| 325 | } |
| 326 | |
| 327 | /** |
| 328 | * 解压文件 |
no test coverage detected