(boolean recurse)
| 21 | } |
| 22 | // 从jar从搜索目标类 |
| 23 | public void searchClass(boolean recurse) { |
| 24 | searchDir(this.jarDir, recurse); |
| 25 | System.out.println(String.format("[!] Find %s classes",this.totalNum)); |
| 26 | System.out.println(); |
| 27 | } |
| 28 | //递归搜索目录和子目录下所有jar和zip文件 |
| 29 | protected void searchDir(String dir, boolean recurse) { |
| 30 | try { |