我正在使用Javassist用main方法编写一个HelloWorld类。编译时,出现如下错误。我不确定main方法中的String [] args有什么问题吗?
javassist.CannotCompileException: [source error] syntax error near "ng[] args)"
at javassist.CtNewMethod.make(CtNewMethod.java:78)
at javassist.CtNewMethod.make(CtNewMethod.java:44)
这是我的代码
public void createClass() {
ClassPool cp = ClassPool.getDefault();
CtClass ct = cp.makeClass("HelloClass");
try {
CtMethod m = CtNewMethod.make("public void sayHello() { System.out.println(\"Hello World\");}",ct);
ct.addMethod(m);
String str="public static void main(String[] args)";
CtMethod n = CtNewMethod.make(str,ct);
n.setBody("HelloClass a = new HelloClass();a.sayHello();");
ct.addMethod(n);
ct.writeFile();
} catch (CannotCompileException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
public static void main(String[] args) {
JavaAssistExample inject = new JavaAssistExample();
inject.createClass();
}
最佳答案
作为CtNewMethod
状态的javadoc
源代码不仅必须包括方法主体,还必须包括整个声明
因此,它必须包含{}
,例如
String str = "public static void main(String[] args){}";
但是,还有两件事会给您带来麻烦。
首先,您没有默认(或无参数)构造函数。加一
ct.addConstructor(CtNewConstructor.defaultConstructor(ct));
其次,
CtMethod#setBody(..)
方法完全替代了方法主体。所以你不能做你正在做的事。如果您需要所有这些电话,则需要将它们放在一起n.setBody("{HelloClass a = new HelloClass();a.sayHello();}");