eclipse中有两个项目!如何在另一个项目中反映一个类?我将其他项目的类路径放入系统的属性中。但仍然没有发现弹出类异常。有什么好的解决方案吗?
System.out.println(System.getProperty("java.class.path"));
System.getProperties().put("java.class.path",
System.getProperty("java.class.path") +
";C:\\Users\\fu.jian\\workspace\\Study\\bin");
System.out.println(System.getProperty("java.class.path"));
Class<?> forName2 = Class.forName("study.Activator");
System.out.println(forName2);