views:

212

answers:

3

I'm looking for a well-maintained Java bytecode manipulation library with an intuitive API. There seem to be quite a lot of them out there. Any suggestions on which ones to try?

+3  A: 

The best answer to your question will be governed by your specific needs and objectives; if you can expand upon what you're trying to accomplish, I can perhaps offer a more tailored response.

In lieu of that, however, in my experience, ASM offers probably the best combination of maturity, flexibility, and ease-of-use:

  • It's under relatively active development: even though the latest release is from June 2009, developers are regularly making commits to their VCS.
  • It's already in wide use in a number of prominent Java products, such as AspectJ, Groovy, Cobertura, and many others, which promises a wide user-base and thus a wide community for support.
  • It's fairly thoroughly documented, and there are a number of tutorials, user guides, and reference documents available both from the OW2 Consortium and the community at large.
RTBarnard
Sorry about the lack of specifics in the question. I'd prefer not to give out the specifics of what I'm doing, but your answer was quite helpful. Thanks. I think I'll end up using ASM.
Daniel
+2  A: 

That actually depends on how you define intuitive ;-) I started using ASM two weeks ago for a certain task on my current project and it worked like a charm. It only took me a couple hours to understand it and be able to use it, but I wouldn't exactly call the API intuitive. But if you know a little bit about Java bytecode and are familiar with the visitor pattern, the learning curve is not very high, IMO.

Another advantage of ASM is that it is apparently bundled with the standard API at least in the Sun JDK, although in a different package (com.sun.xml.internal.ws.org.objectweb.asm and subpackages).

Robert Petermeier
You're right: judging by some of the weird APIs out there, people's definitions of intuitive seem to differ widely ;) . I've just spent a little time looking at ASM, and I'm far less intimidated than I expected to be! I think I'll stick with it. Thanks for your answer.
Daniel
Please don't use implementation packages...
Tom Hawtin - tackline
Yeah, right, don't use implementation packages. And don't manipulate bytecode either, unless you really have to ;-)
Robert Petermeier
+2  A: 

Take a look at this article : http://www.pabrantes.net/blog/space/start/2008-03-24/1

A little old but still relevant.

ASM And Javassist are the most used ones now. Bcel is dying.

Roman