我正在尝试访问另一个包中的类,但它不起作用。它一直在告诉我ClassNotFoundException
。当我使用与它工作的类Class.forName("x.testClazz")
相同的包中的TestGenerator
类调用时。
package x;
public class TestGenerator {
public static void main(String[] args) {
try {
Class<?> cls = Class.forName(
"atv12.randomtesting.integration.classes.EasyBranch");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
任何解决方案?