Can anyone give an elaborative comparison between BCEL, ObjectWeb Asm and java reflection regarding every aspects(their pros and cons) but specially for invoking a method of a .class file.
thanks in advance
|
Can anyone give an elaborative comparison between BCEL, ObjectWeb Asm and java reflection regarding every aspects(their pros and cons) but specially for invoking a method of a .class file. thanks in advance
| |||||
feedback
|
|
If you want to invoke a method of an existing class, I would think Java reflection is all you need. BCEL and ASM are toolkits for creating and manipulating bytecode which do much more than that, and are much more complex. | |||
|
feedback
|