Domanda

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?

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top