JavaCompiler from JDK 1.6: how to write class bytes directly to byte[] array?

后端 未结 3 347
灰色年华
灰色年华 2021-01-02 15:52

So I recently learned of the new JavaCompiler API available in JDK 1.6. This makes it very simple to compile a String to a .class file directly fr

相关标签:
3条回答
  • 2021-01-02 16:33

    Maybe you could create your own javax.tools.JavaFileManager implementing class where you would return your own implementation of javax.tools.FileObject which would then write it out to memory instead to disk. So for your subclass of javax.tools.FileObject Writer openWriter() throws IOException method you would return a java.io.StringWriter. All the methods should be converted to their String counterparts.

    0 讨论(0)
  • 2021-01-02 16:53

    The reason that there is no standard API to write bytecodes to a byte array is that compiling a single Java source file may result in multiple bytecode files. For example, any source file with nested / inner / anonymous classes will result in multiple bytecode files.

    If you roll your own JavaFileManager, you will need to deal with this situation.

    0 讨论(0)
  • 2021-01-02 16:56

    The demo application that shipped with the JSR 199 API had an in-memory compile-from-string example (which is indeed using a MemoryFileManager). Maybe have a look at it here or here (these samples are a bit outdated though, they will require slight changes). Also maybe check the How to compile on the fly? article on Java.net.

    PS: I didn't look at all the details, but I'm don't think it handles the cases mentioned by Stephen C.

    0 讨论(0)
提交回复
热议问题