给定类文件的路径,我如何才能发现它是否实现了某个接口?
我可以使用javap来解析输出,但可能还有更智能的方法。
我不想解析源代码,因为它可能不可用。我还应该注意,类文件的路径只有在运行时才可用。
如果需要从命令行进行检查,那么javap是一个选项。
如果你需要从代码中检查它,这应该可以
interface MyInterface {
...
}
try {
URL classUrl;
classUrl = new URL(<path to the dir containg the .class file>);
URL[] classUrls = { classUrl };
URLClassLoader ucl = new URLClassLoader(classUrls);
Class clazz = ucl.loadClass(<your class name>);
if (MyInterface.class.isInstance(clazz.newInstance())){
...
}
}
catch (Exception e){ System.out.println(e);}
让我们假设A类实现接口B
要检查是否可以使用InstanceOf操作符
A a = new A();
if(a instanceof B) // here a is refernce variable holding object of class A
{
//do your thing
}
编辑
Class clazz = (Class) Class.forName("Your class name");
for (Class c : clazz.getClass().getInterfaces()) {
String name=c.getName());
if(name.equals("org.apache.SomethingInterface"))
{
now u know u have it implemented
}
}