I am trying to find some documentation on dynamic bytecode generation.
After a few attempts on Google, the best I could find was the source code of
Jython.
Any other good pointers? Thanks.
Emmanuel Chavane
David Rabinowitz - 21 Jan 2004 17:20 GMT
http://jakarta.apache.org/bcel/index.html
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code of
> Jython.
> Any other good pointers? Thanks.
>
> Emmanuel Chavane
Christophe Vanfleteren - 21 Jan 2004 18:25 GMT
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code
> of Jython.
> Any other good pointers? Thanks.
>
> Emmanuel Chavane
http://cglib.sourceforge.net/

Signature
Kind regards,
Christophe Vanfleteren
Chris Uppal - 21 Jan 2004 20:11 GMT
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code
> of Jython.
It may help to look at Kawa:
http://www.gnu.org/software/kawa/
and in particular the gnu.bytecode library that is linked to off that page.
-- chris
Marco Schmidt - 22 Jan 2004 00:07 GMT
xp, fup2 comp.lang.java.programmer
<EC>:
>I am trying to find some documentation on dynamic bytecode generation.
>After a few attempts on Google, the best I could find was the source code of
>Jython.
>Any other good pointers?
<http://dmoz.org/Computers/Programming/Languages/Java/Class_Libraries/Data_Format
s/Java_Class_Files/>
Regards,
Marco

Signature
Please reply in the newsgroup, not by email!
Java programming tips: http://jiu.sourceforge.net/javatips.html
Other Java pages: http://www.geocities.com/marcoschmidt.geo/java.html
Michael N. Christoff - 22 Jan 2004 00:26 GMT
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code of
> Jython.
> Any other good pointers? Thanks.
>
> Emmanuel Chavane
google for Javassist
l8r, Mike N. Christoff
Moshe Sayag - 22 Jan 2004 10:15 GMT
You should also check for scripting tools that enable you to create java
code and run it on the fly.
I know there are some alternatives but I don't remember their names but
BeanShell http://www.beanshell.org/
Moshe
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code of
> Jython.
> Any other good pointers? Thanks.
>
> Emmanuel Chavane
Graham Matthews - 22 Jan 2004 15:02 GMT
> I am trying to find some documentation on dynamic bytecode generation.
> After a few attempts on Google, the best I could find was the source code of
> Jython.
> Any other good pointers? Thanks.
Look up BCEL -- the Byte Code Engineering Library. I use if tor dynamic
byte code generation and it's very nice, very well documented, very
stable and tested.
graham