获取压缩文件中的注释链表 @param zipFilePath 压缩文件路径 @return 压缩文件中的注释链表 @throws IOException IO错误时抛出
(String zipFilePath)
| 637 | * IO错误时抛出 |
| 638 | */ |
| 639 | public static List<String> getComments(String zipFilePath) |
| 640 | throws IOException { |
| 641 | return getComments(ToolFile.getFileByPath(zipFilePath)); |
| 642 | } |
| 643 | |
| 644 | /** |
| 645 | * 获取压缩文件中的注释链表 |
nothing calls this directly
no test coverage detected