private static Set<String> getDependencies(InputStream is) throws IOException {
ClassFile cf = new ClassFile(new DataInputStream(is));
ConstPool constPool = cf.getConstPool();
HashSet<String> set = new HashSet<>();
for(int ix = 1, size = constPool.getSize(); ix < size; ix++) {
int descriptorIndex;
switch (constPool.getTag(ix)) {
case ConstPool.CONST_Class: set.add(constPool.getClassInfo(ix));
default: continue;
case ConstPool.CONST_NameAndType:
descriptorIndex = constPool.getNameAndTypeDescriptor(ix);
break;
case ConstPool.CONST_MethodType:
descriptorIndex = constPool.getMethodTypeInfo(ix);
}
String desc = constPool.getUtf8Info(descriptorIndex);
for(int p = 0; p<desc.length(); p++)
if(desc.charAt(p)=='L')
set.add(desc.substring(++p, p = desc.indexOf(';', p)).replace('/', '.'));
}
return set;
}
测试它与
try(InputStream is = String.class.getResourceAsStream("String.class")) {
set = getDependencies(is);
}
set.stream().sorted().forEachOrdered(System.out::println);
1条答案
按热度按时间lhcgjxsq1#
所有依赖项都记录在类文件的中心位置,即常量池。因此,为了有效地处理所有依赖项,您需要一个库,允许在不查看类文件其余部分的情况下处理常量池(这排除了asm,否则它是一个非常好的字节码处理库)。
因此,使用javassist,您可以像
测试它与
显示
(在java上) 9)
使用bcel可以得到相同的结果: