84669 Lernen von Personen
152542 Lernen von Personen
20005 Lernen von Personen
5487 Lernen von Personen
7821 Lernen von Personen
359900 Lernen von Personen
3350 Lernen von Personen
180660 Lernen von Personen
48569 Lernen von Personen
18603 Lernen von Personen
40936 Lernen von Personen
1549 Lernen von Personen
1183 Lernen von Personen
32909 Lernen von Personen
请教获取jar包内的方法数的工具,请大神帮帮忙
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
我推荐一个jar包org.reflections,github地址:https://github.com/ronmamo/reflections一个stackoverflow的类似问题:http://stackoverflow.com/questions/520328/can-you-find-all-classes-in-a-package-using-reflection
org.reflections
Reflections reflections = new Reflections("my.project.prefix"); Set<Class<? extends Object>> allClasses = reflections.getSubTypesOf(Object.class);
示例只展示到类级别的,后续补上统计方法的代码。
UPDATE:上面的代码我没有测试通过,抱歉!我尝试了另外一种方法,参考自:http://stackoverflow.com/questions/15720822/how-to-get-names-of-classes-inside-a-jar-file采用自己读jar包,拼接Java全限定类名的形式。1.将目标jar引入到Java工程2.运行main方法
private static List<String> getClassNames(String jarPath) throws IOException { List<String> classNames = new ArrayList<String>(); ZipInputStream zip = new ZipInputStream(new FileInputStream(jarPath)); for (ZipEntry entry = zip.getNextEntry(); entry != null; entry = zip.getNextEntry()) { if (!entry.isDirectory() && entry.getName().endsWith(".class")) { // This ZipEntry represents a class. Now, what class does it represent? String className = entry.getName().replace('/', '.'); // including ".class" classNames.add(className.substring(0, className.length() - ".class".length())); } } return classNames; }
为了获得jar的路径,我参考了http://blog.csdn.net/mybackup/article/details/7401704 这篇文章。所以这里有一个前提,需要知道jar的类。类似的main方法代码:
public static void main(String[] args) throws ClassNotFoundException, IOException { DB db = new DB(); //某个jar包中的类 String jarPath = db.getClass().getProtectionDomain().getCodeSource().getLocation().getFile(); int count = 0; List<String> names = getClassNames(jarPath); for (String name : names) { System.out.println(name); Class<?> clazz = Class.forName(name); Method[] methods = clazz.getDeclaredMethods(); for(Method m : methods) { System.out.println(m.getName()); //这里可能会有问题哦 count++; } } System.out.println("all count: " + count); }
我推荐一个jar包
org.reflections
,github地址:https://github.com/ronmamo/reflections一个stackoverflow的类似问题:http://stackoverflow.com/questions/520328/can-you-find-all-classes-in-a-package-using-reflection
示例只展示到类级别的,后续补上统计方法的代码。
UPDATE:
上面的代码我没有测试通过,抱歉!我尝试了另外一种方法,参考自:http://stackoverflow.com/questions/15720822/how-to-get-names-of-classes-inside-a-jar-file
采用自己读jar包,拼接Java全限定类名的形式。
1.将目标jar引入到Java工程
2.运行main方法
为了获得jar的路径,我参考了http://blog.csdn.net/mybackup/article/details/7401704 这篇文章。
所以这里有一个前提,需要知道jar的类。
类似的main方法代码: