I am using ASM to transform a java class. Instead of loading the byte array into memory, I would like to save the resulting byte array to a .class file. The ASM manual says this is possible, but does not give an example. How can I do this?

有帮助吗?

解决方案

Just open a FileOutputStream, write the byte array into it and close it.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top