Copyright © tutorialspoint.com
import java.awt.*; import java.applet.*; |
The output from
javap DocFooter yields:
For example:
javap -J-version
javap -JJ-Djava.security.manager \
Compiled from DocFooter.java
public class DocFooter extends java.applet.Applet {
java.lang.String date;
java.lang.String email;
public void init();
public void paint(java.awt.Graphics);
public DocFooter();
}
OPTIONS
The following options are supported:
Tag Description
-b
Ensures backward compatibility with
javap in JDK 1.1.
-bootclasspath path
Specifies path from which to load bootstrap classes. By
default, the bootstrap classes are the classes implementing
the core Java platform located in
jre/lib/rt.jar and
jre/lib/charsets.jar.
-c
Prints out disassembled code, that is, the instructions
that comprise the Java bytecodes, for each of the
methods in the class.
These are documented in the Java Virtual Machine Specification.
-classpathpath
Specifies the
path javap uses to look up classes.
Overrides the default or the
CLASSPATH environment variable if it is set.
Directories are separated by colons
(:). Thus the general format for
path is:
Tag Description
.:<your_path>
Tag Description
.:/home/avh/classes:/usr/local/java/classes
Tag Description
-extdirsdirs
Overrides location at which installed extensions are searched.
The default location for extensions is
jre/lib/ext.
-help
Prints out help message for
javap.
-Jflag
Passes
flag directly to runtime system.
-Djava.security.policy=MyPolicy MyClassName
-l
Displays line and local variable tables.
-package
Shows only package, protected, and public classes and
members. This is the default.
-private
Shows all classes and members.
-protected
Shows only protected and public classes and members.
-public
Shows only public classes and members.
-s
Displays internal type signatures.
-verbose
Prints stack size, number of
locals, and
args for methods.
ENVIRONMENT VARIABLES
Tag Description
CLASSPATH
Used to provide the system with a path to user-defined
classes. Directories are separated by colons.
For example:
Tag Description
.:/home/avh/classes:/usr/local/java/classes
SEE ALSO
Copyright © tutorialspoint.com