jdk/src/linux/doc/man/javap.1
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 2692 345bc8d65b19
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
.'" t
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
." Copyright 2000-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
." This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
." under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
." published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
." This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
." FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
." version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
." accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
." You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
." 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
." Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
." CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
." have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
."
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
." `
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
.TH javap 1 "05 Aug 2006"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
." Generated by html2roff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
.SH NAME
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
javap \- The Java Class File Disassembler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
Disassembles class files.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
.SH "SYNOPSIS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
javap [ \fP\f3options\fP\f3 ] class. . .
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
.SH "DESCRIPTION"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
The \f3javap\fP command disassembles a class file. Its output depends on the options used. If no options are used, \f3javap\fP prints out the package, protected, and public fields and methods of the classes passed to it. \f3javap\fP prints its output to stdout. For example, compile the following class declaration:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
.RS 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
import java.applet.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
public class DocFooter extends Applet {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        String date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        String email;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        public void init() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                resize(500,100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                date = getParameter("LAST_UPDATED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                email = getParameter("EMAIL");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        public void paint(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                g.drawString(date + " by ",100, 15);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                g.drawString(email,290,15);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
.RE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
The output from \f3javap DocFooter\fP yields:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
.RS 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
Compiled from DocFooter.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
public class DocFooter extends java.applet.Applet {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    java.lang.String date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    java.lang.String email;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public DocFooter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    public void init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public void paint(java.awt.Graphics);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
.RE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
The output from \f3javap \-c DocFooter\fP yields:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
.RS 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
Compiled from DocFooter.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
public class DocFooter extends java.applet.Applet {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    java.lang.String date;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    java.lang.String email;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public DocFooter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    public void init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    public void paint(java.awt.Graphics);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
Method DocFooter()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
   0 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
   1 invokespecial #1 <Method java.applet.Applet()>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
   4 return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
Method void init()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
   0 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
   1 sipush 500
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
   4 bipush 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
   6 invokevirtual #2 <Method void resize(int, int)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
   9 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
  10 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
  11 ldc #3 <String "LAST_UPDATED">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
  13 invokevirtual #4 <Method java.lang.String getParameter(java.lang.String)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
  16 putfield #5 <Field java.lang.String date>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
  19 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
  20 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
  21 ldc #6 <String "EMAIL">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
  23 invokevirtual #4 <Method java.lang.String getParameter(java.lang.String)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
  26 putfield #7 <Field java.lang.String email>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
  29 return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
Method void paint(java.awt.Graphics)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
   0 aload_1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
   1 new #8 <Class java.lang.StringBuffer>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
   4 dup
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
   5 invokespecial #9 <Method java.lang.StringBuffer()>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
   8 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
   9 getfield #5 <Field java.lang.String date>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
  12 invokevirtual #10 <Method java.lang.StringBuffer append(java.lang.String)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
  15 ldc #11 <String " by ">
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
  17 invokevirtual #10 <Method java.lang.StringBuffer append(java.lang.String)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
  20 invokevirtual #12 <Method java.lang.String toString()>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
  23 bipush 100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
  25 bipush 15
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
  27 invokevirtual #13 <Method void drawString(java.lang.String, int, int)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
  30 aload_1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
  31 aload_0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
  32 getfield #7 <Field java.lang.String email>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
  35 sipush 290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
  38 bipush 15
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
  40 invokevirtual #13 <Method void drawString(java.lang.String, int, int)>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
  43 return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
.RE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
.SH "OPTIONS"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
\-help 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
Prints out help message for \f3javap\fP. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
\-l 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
Prints out line and local variable tables. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
\-b 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
Ensures backward compatibility with \f3javap\fP in JDK 1.1. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
\-public 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
Shows only public classes and members. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
\-protected 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
Shows only protected and public classes and members. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
\-package 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
Shows only package, protected, and public classes and members. This is the default. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
\-private 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
Shows all classes and members. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
\-Jflag 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
Pass \f2flag\fP directly to the runtime system. Some examples: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
.RS 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
javap \-J\-version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
javap \-J\-Djava.security.manager \-J\-Djava.security.policy=MyPolicy MyClassName
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
.RE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
\-s 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
Prints internal type signatures. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
\-c 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
Prints out disassembled code, i.e., the instructions that comprise the Java bytecodes, for each of the methods in the class. These are documented in the 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
.na
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
\f2Java Virtual Machine Specification\fP @
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
http://java.sun.com/docs/books/vmspec/. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
\-verbose 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
Prints stack size, number of \f2locals\fP and \f2args\fP for methods. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
\-classpath path 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
Specifies the path \f3javap\fP 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 \f2path\fP is: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
   .:<your_path>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
For example: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
.:/home/avh/classes:/usr/local/java/classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
\-bootclasspath path 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java platform located in \f2jre/lib/rt.jar\fP and several other jar files. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
\-extdirs dirs 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
Overrides location at which installed extensions are searched for. The default location for extensions is the value of \f2java.ext.dirs\fP. 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
.SH "ENVIRONMENT VARIABLES"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
.TP 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
CLASSPATH 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
Used to provide the system a path to user\-defined classes. Directories are separated by colons, for example, For example: 
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
.RS 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
.nf
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
\f3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
.:/home/avh/classes:/usr/local/java/classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
.fl
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
\fP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
.fi
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
.RE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
.SH "SEE ALSO"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
javac, java, jdb, javah, javadoc
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
.LP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360