我想以下列方式列出给定jar的所有API(我没有javadoc)?
PackageName, ClassName, API Name, ParamName:type;ParameterName:type,ReturnType
答案 0 :(得分:2)
有趣的问题。可能有很多工具可以做类似的事情,虽然不是你想要的。当然,ASM可以轻松实现。事实上,我用反射掀起了一个:
public class C {
public static void main(String[] args) throws java.io.IOException {
java.util.jar.JarFile jar = new java.util.jar.JarFile(args[0]);
java.util.Enumeration<java.util.jar.JarEntry> jarEntries = jar.entries();
while (jarEntries.hasMoreElements()) {
java.util.jar.JarEntry jarEntry = jarEntries.nextElement();
String jarEntryName = jarEntry.getName();
if (!jarEntryName.endsWith(".class")) {
continue;
}
int jarEntryNameSuffixIndex = jarEntryName.length() - 6;
String binaryName = jarEntryName.substring(0, jarEntryNameSuffixIndex).replaceAll("/", "\\.");
Class<?> type = null;
while (type == null) {
try {
type = ClassLoader.getSystemClassLoader().loadClass(binaryName);
} catch (ClassNotFoundException e) {
int binaryNameQualifiedIndex = binaryName.indexOf(".");
if (binaryNameQualifiedIndex == -1) {
throw new RuntimeException("couldn't load class for " + jarEntryName);
} else {
binaryName = binaryName.substring(binaryNameQualifiedIndex + 1);
}
}
}
int typeModifiers = type.getModifiers();
if (!(java.lang.reflect.Modifier.isPublic(typeModifiers) || java.lang.reflect.Modifier.isProtected(typeModi$
continue;
}
String packageName = (type.getPackage() == null) ? "" : type.getPackage().getName();
String typeName = type.getCanonicalName();
for (java.lang.reflect.Method method : type.getDeclaredMethods()) {
if (method.isSynthetic() || method.isBridge()) {
continue;
}
int methodModifiers = method.getModifiers();
if (!(java.lang.reflect.Modifier.isPublic(methodModifiers) || java.lang.reflect.Modifier.isProtected(me$
continue;
}
String methodName = method.getName();
System.out.print(packageName + ", " + typeName + ", " + methodName + ", ");
for (Class<?> parameterType : method.getParameterTypes()) {
String parameterTypeName = parameterType.getCanonicalName();
System.out.print(":" + parameterTypeName + ", ");
}
Class<?> returnType = method.getReturnType();
String returnTypeName = returnType.getCanonicalName();
System.out.println(returnTypeName);
}
}
}
}
在类路径中包含JAR(及其依赖项)。这不会打印参数的名称,因为您无法通过反射获取这些参数。它也没有显示类型参数或var-args,尽管你可以得到它们。
答案 1 :(得分:0)
您可以尝试使用classdoc,它尝试从编译文件和jar存档生成javadoc。