/usr/java/bin/javap [options] classfilesSolaris only. Disassemble Java class files and print the results. By default, javap prints the public fields and methods of the named classes.
-bIgnored. For backward compatibility with the JDK 1.1 javap.
-cPrint out the disassembled byte-codes for each method in the given classes.
-classpath pathUse path as the search path for class files, overriding $CLASSPATH. path is a colon-separated list of directories.
-hGenerate code that can be used in a C header file.
-J optionPass option directly to java.
-lDisplay line number and local variable information.
-packageOnly disassemble package, protected and public classes and members. This is the default.
-privateDisassemble all classes and members.
-protectedOnly disassemble protected and public classes and members.
-publicOnly disassemble public classes and members.
-sDisplay the internal type signatures.
-verboseFor each method, print the stack size, number of arguments, and number of local variables.
-verifyRun the Java verifier.
-versionPrint the version of javap.