3 Best Libraries to manipulate Java bytecode programmatically
If you are looking for a well-maintained Java bytecode manipulation library with an intuitive API then you are at the right place. We are going to discuss 3 Best bytecode manipulation library. There seem to be quite a lot of them out there. Here is my suggestion on what you should try along with their tutorial links
1) ASM
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify existing classes or dynamically generate classes, directly in binary form. Provided common transformations and analysis algorithms allow to easily assemble custom complex transformations and code analysis tools.
ASM offer similar functionality as other bytecode frameworks, but it is focused on simplicity of use and performance. Because it was designed and implemented to be as small and as fast as possible, it makes it very attractive for using in dynamic systems*.
Read More
No comments:
Post a Comment