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