如何以编程方式编译和实例化 Java 类?

我将类名存储在一个属性文件中。我知道类存储将实现 IDDynamicLoad。如何动态实例化类?

现在我知道了

     Properties foo = new Properties();
foo.load(new FileInputStream(new File("ClassName.properties")));
String class_name = foo.getProperty("class","DefaultClass");
//IDynamicLoad newClass = Class.forName(class_name).newInstance();

NewInstance 是否只加载已编译的.Class 文件? 如何加载未编译的 Java 类?

64579 次浏览

如果您知道该类具有公共 no-arg 构造函数,则注释代码是正确的。您只需要强制转换结果,因为编译器不知道该类实际上将实现 IDynamicLoad。所以:

   IDynamicLoad newClass = (IDynamicLoad) Class.forName(class_name).newInstance();

当然,类必须在类路径上进行编译才能正常工作。

如果您希望从源代码动态地编译一个类,那就完全是另一回事了。

如何加载未编译的 Java 类?

您需要先编译它。这可以通过 javax.toolsAPI以编程方式完成。这只需要将 JDK安装在 JRE 之上的本地机器上。

下面是一个基本的开始示例(将明显的异常处理放在一边) :

// Prepare source somehow.
String source = "package test; public class Test { static { System.out.println(\"hello\"); } public Test() { System.out.println(\"world\"); } }";


// Save source in .java file.
File root = new File("/java"); // On Windows running on C:\, this is C:\java.
File sourceFile = new File(root, "test/Test.java");
sourceFile.getParentFile().mkdirs();
Files.write(sourceFile.toPath(), source.getBytes(StandardCharsets.UTF_8));


// Compile source file.
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
compiler.run(null, null, null, sourceFile.getPath());


// Load and instantiate compiled class.
URLClassLoader classLoader = URLClassLoader.newInstance(new URL[] { root.toURI().toURL() });
Class<?> cls = Class.forName("test.Test", true, classLoader); // Should print "hello".
Object instance = cls.newInstance(); // Should print "world".
System.out.println(instance); // Should print "test.Test@hashcode".

就像

hello
world
test.Test@ab853b

如果这些类 implements具有某个已经存在于类路径中的接口,那么进一步的使用将会更加容易。

SomeInterface instance = (SomeInterface) cls.newInstance();

否则,您需要使用 反射 API来访问和调用(未知的)方法/字段。


这与实际问题无关:

properties.load(new FileInputStream(new File("ClassName.properties")));

java.io.File依赖于当前的工作目录是导致移植性问题的配方。别这样。将该文件放在类路径中,并使用带有类路径相对路径的 ClassLoader#getResourceAsStream()

properties.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("ClassName.properties"));

与 BalusC 的答案相同,但是在这段来自我的 kilim 发行版的代码中有更多的自动包装器。 Https://github.com/kilim/kilim/blob/master/src/kilim/tools/javac.java

它获取包含 Java 源代码的字符串列表,提取包和公共类/接口名称,并在 tmp 目录中创建相应的目录/文件层次结构。然后对其运行 java 编译器,并返回名称、类文件对(ClassInfo 结构)的列表。

请自便,这是麻省理工学院授权的代码。