我想使用反射来获取新创建的java类的所有方法。像bellow一样,我通过从另一个文件复制创建了java类,然后使用javacompiler编译新创建的java。但是我不知道为什么没有创建目标类文件。ps:如果我给出了错误的源-目标java文件路径,就会有编译信息,比如 "javac: cannot find file: codeGenerator/Service.java"
. 谢谢大家。
private static Method[] createClassAndGetMethods(String sourceFilePath) throws IOException {
File targetFile = new File("Service.java");
File sourceFile = new File(sourceFilePath);
Files.copy(sourceFile, targetFile);
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
compiler.run(null, null, null, targetFile);
Thread.sleep(5000);
//After the Service.java compiled, use the class getDeclaredMethods() method.
Method[] declaredMethods = Service.class.getDeclaredMethods();
return declaredMethods;
}
编译方法:
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
compiler.run(null, null, null, targetFile);
2条答案
按热度按时间4smxwvx51#
最后用上述方法成功地编译了target service.java。谢谢大家。
yebdmbv42#
不能编写直接依赖于
Service.class
除非Service
已编译。您必须动态加载类并从中获取方法。目前很难看到包含此代码的类是如何加载的,而且它肯定不会给出正确的答案,除非Service.class
在加载类时存在,在这种情况下,代码将给出该版本的方法,而不是新编译的版本。你需要去掉所有提到
Service.class
或者确实如此Service
从整个源代码中Service
与Class.forName()
编译后。做一个干净的建设,以确保没有Service.class
文件存在于部署中。