Search code examples
javajava-compiler-api

Java 5.0 Compiler API?


Is there a Java 5.0 equivalent to the Java 6.0 Compiler API? I'm trying to compile and jar some XmlBean schemas at runtime.


Solution

  • You can write the files to disk and call javac using System.exec()

    Perhaps its time to updated to Java 6 or 7.