Skip to content
Advertisement

How do I programmatically compile and instantiate a Java class?

I have the class name stored in a property file. I know that the classes store will implement IDynamicLoad. How do I instantiate the class dynamically?

Right now I have

JavaScript

Does the newInstance only load compiled .class files? How do I load a Java Class that is not compiled?

Advertisement

Answer

How do I load a Java Class that is not compiled?

You need to compile it first. This can be done programmatically with the javax.tools API. This only requires the JDK being installed at the local machine on top of JRE.

Here’s a basic kickoff example (leaving obvious exception handling aside):

JavaScript

Which yields like

JavaScript

Further use would be more easy if those classes implements a certain interface which is already in the classpath.

JavaScript

Otherwise you need to involve the Reflection API to access and invoke the (unknown) methods/fields.


That said and unrelated to the actual problem:

JavaScript

Letting java.io.File rely on current working directory is recipe for portability trouble. Don’t do that. Put that file in classpath and use ClassLoader#getResourceAsStream() with a classpath-relative path.

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement