获取压缩文件中的文件对象 @param zipFilePath 压缩文件路径 @return 压缩文件中的文件对象 @throws IOException IO错误时抛出
(String zipFilePath)
| 678 | * IO错误时抛出 |
| 679 | */ |
| 680 | public static Enumeration<?> getEntries(String zipFilePath) |
| 681 | throws IOException { |
| 682 | return getEntries(ToolFile.getFileByPath(zipFilePath)); |
| 683 | } |
| 684 | |
| 685 | /** |
| 686 | * 获取压缩文件中的文件对象 |
no test coverage detected