InMemoryJavaCompiler
InMemoryJavaCompiler copied to clipboard
Utility class to compile java source code in memory
Calling addSource("A", "class B {}"); addSource("B", "class A {}"); compileAll(); returns a Map of "A" to the class A and "B" to the class B. This is unexpected, and means...
Hi @trung, I'm using your library to compile code that's coming from a web interface. After compilation I'm running the compiled class to evaluate the output. If a user inputs...
I had a problem with compiling code when using a java web application, as [this link shows](http://stackoverflow.com/questions/39796527/compile-dynamically-java-class-web-project). I would like to ask you to add a method where the user...
ExtendedStandardJavaFileManager fileManager = new ExtendedStandardJavaFileManager(javac.getStandardFileManager(null, null, null), compiledCode, cl); line given null pointer exception