javap-java-1.8.0-openjdk-1.8.0.121-0.b13.el7_3.x86_64 (1) Linux Manual Page
javap – Disassembles one or more class files.
Synopsis
-
javap[options] classfile...
options
- The command-line options. See Options.
classfile
- One or more classes separated by spaces to be processed for annotations such as DocFooter.class. You can specify a class that can be found in the class path, by its file name or with a URL such as
file:///home/user/myproject/src/DocFooter.class.
Description
The javap command disassembles one or more class files. The output depends on the options used. When no options are used, then the javap command prints the package, protected and public fields, and methods of the classes passed to it. The javap command prints its output to stdout.
Options
-help
–help
-?
- Prints a help message for the
javapcommand.
-version
- Prints release information.
-l
- Prints line and local variable tables.
-public
- Shows only public classes and members.
-protected
- Shows only protected and public classes and members.
-private
-p
- Shows all classes and members.
-Joption
- Passes the specified option to the JVM. For example:
-
javap -J-versionjavap -J-Djava.security.manager -J-Djava.security.policy=MyPolicy MyClassName
For more information about JVM options, see the command documentation.
-
-s
- Prints internal type signatures.
-sysinfo
- Shows system information (path, size, date, MD5 hash) of the class being processed.
-constants
- Shows
static finalconstants.
-c
- Prints disassembled code, for example, the instructions that comprise the Java bytecodes, for each of the methods in the class.
-verbose
- Prints stack size, number of locals and arguments for methods.
-classpath path
- Specifies the path the
javapcommand uses to look up classes. Overrides the default or theCLASSPATHenvironment variable when it is set.
-bootclasspath path
- Specifies the path from which to load bootstrap classes. By default, the bootstrap classes are the classes that implement the core Java platform located in
jre/lib/rt.jarand several other JAR files.
-extdir dirs
- Overrides the location at which installed extensions are searched for. The default location for extensions is the value of
java.ext.dirs.
Example
Compile the following DocFooter class:
-
import java.awt.*;import java.applet.*;public class DocFooter extends Applet {String date;String email;public void init() {resize(500,100);date = getParameter("LAST_UPDATED");email = getParameter("EMAIL");}public void paint(Graphics g) {g.drawString(date + " by ",100, 15);g.drawString(email,290,15);}}
The output from the javap DocFooter.class command yields the following:
-
Compiled from "DocFooter.java"public class DocFooter extends java.applet.Applet {java.lang.String date;java.lang.String email;public DocFooter();public void init();public void paint(java.awt.Graphics);}
The output from javap -c DocFooter.class command yields the following:
-
Compiled from "DocFooter.java"public class DocFooter extends java.applet.Applet {java.lang.String date;java.lang.String email;public DocFooter();Code:0: aload_01: invokespecial #1 // Methodjava/applet/Applet."<init>":()V4: returnpublic void init();Code:0: aload_01: sipush 5004: bipush 1006: invokevirtual #2 // Method resize:(II)V9: aload_010: aload_011: ldc #3 // String LAST_UPDATED13: invokevirtual #4 // MethodgetParameter:(Ljava/lang/String;)Ljava/lang/String;16: putfield #5 // Field date:Ljava/lang/String;19: aload_020: aload_021: ldc #6 // String EMAIL23: invokevirtual #4 // MethodgetParameter:(Ljava/lang/String;)Ljava/lang/String;26: putfield #7 // Field email:Ljava/lang/String;29: returnpublic void paint(java.awt.Graphics);Code:0: aload_11: new #8 // class java/lang/StringBuilder4: dup5: invokespecial #9 // Methodjava/lang/StringBuilder."<init>":()V8: aload_09: getfield #5 // Field date:Ljava/lang/String;12: invokevirtual #10 // Methodjava/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;15: ldc #11 // String by17: invokevirtual #10 // Methodjava/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;20: invokevirtual #12 // Methodjava/lang/StringBuilder.toString:()Ljava/lang/String;23: bipush 10025: bipush 1527: invokevirtual #13 // Methodjava/awt/Graphics.drawString:(Ljava/lang/String;II)V30: aload_131: aload_032: getfield #7 // Field email:Ljava/lang/String;35: sipush 29038: bipush 1540: invokevirtual #13 // Methodjava/awt/Graphics.drawString:(Ljava/lang/String;II)V43: return}
See Also
- • java(1)
- • javac(1)
- • javadoc(1)
- • javah(1)
- • jdb(1)
- • jdeps(1)
