symbol table

2002-07-23 Thread Johnny
How to display symbol table associated with objects, archive library of objects or executable files in Java? In C language, we use nm command, but how about Java? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: symbol table

2002-07-23 Thread Willis Boyce
The javap utility (included with the JDK) will tell you about the methods, variables and scopes, and bytecodes of any Java class. Try javap -private your.class.Name and then work from there. W On Tue, 23 Jul 2002, Johnny wrote: How to display symbol table associated with objects, archive