如何动态创建 Java 类文件?



我需要一种方法来运行java方法,例如createModule("Login"( 并作为输出具有:

  1. 名为 mod_login 的新文件夹
  2. 内部mod_login从模板创建的 Java 类文件

如果模板是

class Name extends Blah implement Blah {
private createdInt;
private int getCreatedInt() {
return createdInt;
}
}

作为回报,我想得到一个动态创建的类:

class Login extends Blah implement Blah {
private loginInt;
private int getLoginInt() {
return loginInt;
}
}

试图调查时髦的东西,但找不到任何有用的东西。

附言它不应该发生在运行时,它更像是一个助手,只需 1 个按钮即可实例化这些模块,而不是键入它们

对您有所帮助的工作示例。

import java.io.File;
import java.io.FileWriter;
import java.lang.reflect.Method;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Arrays;
import javax.tools.JavaCompiler;
import javax.tools.JavaFileObject;
import javax.tools.StandardJavaFileManager;
import javax.tools.StandardLocation;
import javax.tools.ToolProvider;
public class HelloWorld {
public static void main(String[] args) throws Exception {
// create an empty source file
File sourceFile = File.createTempFile("Hello", ".java");
sourceFile.deleteOnExit();
// generate the source code, using the source filename as the class name
String classname = sourceFile.getName().split("\.")[0];
String sourceCode = "public class " + classname + "{ public void hello() { System.out.print("Hello world");}}";
// write the source code into the source file
FileWriter writer = new FileWriter(sourceFile);
writer.write(sourceCode);
writer.close();
// compile the source file
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
StandardJavaFileManager fileManager = compiler.getStandardFileManager(null, null, null);
File parentDirectory = sourceFile.getParentFile();
fileManager.setLocation(StandardLocation.CLASS_OUTPUT, Arrays.asList(parentDirectory));
Iterable<? extends JavaFileObject> compilationUnits = fileManager.getJavaFileObjectsFromFiles(Arrays.asList(sourceFile));
compiler.getTask(null, fileManager, null, null, null, compilationUnits).call();
fileManager.close();
// load the compiled class
URLClassLoader classLoader = URLClassLoader.newInstance(new URL[] { parentDirectory.toURI().toURL() });
Class<?> helloClass = classLoader.loadClass(classname);
// call a method on the loaded class
Method helloMethod = helloClass.getDeclaredMethod("hello");
helloMethod.invoke(helloClass.newInstance());
}
}

您只需要在动态创建文件的方法中定义 2 个变量。

类名 & 属性名称

现在使用这些来创建扩展名.java文件,并按原样从模板编写文本。对于类名和属性名生成逻辑,请使用上面的变量。

如果你想创建多个这样的文件,那么在一个列表中获取className和propertyName并运行forloop。

相关内容

  • 没有找到相关文章

最新更新