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

link|improve this question

50% accept rate
1  
That is a pretty broad question, if you ask something more specific, you will have a better chance of getting an answer. – sbridges Apr 29 '11 at 13:41
feedback

1 Answer

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.