我基本上要做的是在一个对象上调用一个方法,该对象的类用String编写并通过javax.tools.JavaCompiler
编译
那部分是“简单的”,我使用了类似的东西:https://sites.google.com/site/malenkov/java/081217
但是,我想要调用方法的对象是另一个类中的字段,该字段也用String编写并通过JavaCompiler编译。我所拥有的是:
MemoryClassLoader mcl1 = new MemoryClassLoader("Class1", Class1Content);
MemoryClassLoader mcl2 = new MemoryClassLoader("Class2", Class2Content);
Class c1 = mcl1.loadClass("Class1");
Class c2 = mcl2.loadClass("Class2");
Field f = c1.getDeclaredField("current"); //current should be of type Class2
Object obj = f.get(c2.newInstance()); //trying to cast the Field to type Class2 so I can invoke Class2 methods on it
Method m = c2.getDeclaredMethod("Class2Method");
System.out.println(m.invoke(obj));
Class1中的重要代码(又名字符串变量Class1Content):
Class1Content = "public MemoryClassLoader mcl = new MemoryClassLoader(\"" + "Class2" + "\", Class2Content);\n" +
"Class c = mcl.loadClass(\"" + "Class2" + "\");\n" +
"public Object current;\n" + //the object I will try to invoke a method on
"public Class1()throws Exception{\n" +
"Field f = c.getDeclaredField(\"initialState\");" + // initialState is the name of the field in Class2 I'm trying to have in Class1
"current = f.get(c.newInstance()); c.cast(current);\n" +
"}\n";
当我尝试运行第一个代码块时,我会在第Object state = f.get(c2.newInstance());
行
线程“main”中的异常java.lang.IllegalArgumentException:不能 将java.lang.Object字段Class1.current设置为Class2
我有什么办法可以做我想要达到的目标,还是我必须回到绘图板? 谢谢!
答案 0 :(得分:4)
MemoryClassLoader
扩展ClassLoader
,因此您的两个类加载了不同的ClassLoader。除非你在ClassLoader之间指定了某种关系,否则一个加载的类将不会被另一个看到。我会尝试修改MemoryClassLoader
,以便一个实例可以加载这两个类。