javap.1 10.3 KB
Newer Older
R
rgallard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
'\" t
.\"  Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
.\"
.\" DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
.\"
.\" This code is free software; you can redistribute it and/or modify it
.\" under the terms of the GNU General Public License version 2 only, as
.\" published by the Free Software Foundation.
.\"
.\" This code is distributed in the hope that it will be useful, but WITHOUT
.\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
.\" FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
.\" version 2 for more details (a copy is included in the LICENSE file that
.\" accompanied this code).
.\"
.\" You should have received a copy of the GNU General Public License version
.\" 2 along with this work; if not, write to the Free Software Foundation,
.\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
.\"
.\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
.\" or visit www.oracle.com if you need additional information or have any
.\" questions.
.\"
.\"     Arch: generic
.\"     Software: JDK 8
.\"     Date: 21 November 2013
.\"     SectDesc: Basic Tools
.\"     Title: javap.1
.\"
.if n .pl 99999
.TH javap 1 "21 November 2013" "JDK 8" "Basic Tools"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
D
duke 已提交
51

R
rgallard 已提交
52 53 54 55 56
.SH NAME    
javap \- Disassembles one or more class files\&.
.SH SYNOPSIS    
.sp     
.nf     
D
duke 已提交
57

R
rgallard 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
\fBjavap\fR [\fIoptions\fR] \fIclassfile\fR\&.\&.\&.
.fi     
.sp     
.TP     
\fIoptions\fR
The command-line options\&. See Options\&.
.TP     
\fIclassfile\fR
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 \f3file:///home/user/myproject/src/DocFooter\&.class\fR\&.
.SH DESCRIPTION    
The \f3javap\fR command disassembles one or more class files\&. The output depends on the options used\&. When no options are used, then the \f3javap\fR command prints the package, protected and public fields, and methods of the classes passed to it\&. The \f3javap\fR command prints its output to \f3stdout\fR\&.
.SH OPTIONS    
.TP
-help, --help, -?
.br
Prints a help message for the \f3javap\fR command\&.
.TP
-version
.br
Prints release information\&.
.TP
-l
.br
Prints line and local variable tables\&.
.TP
-public
.br
Shows only public classes and members\&.
.TP
-protected
.br
Shows only protected and public classes and members\&.
.TP
-private, -p
.br
Shows all classes and members\&.
.TP
-J\fIoption\fR
.br
Passes the specified option to the JVM\&. For example:
.sp     
.nf     
\f3javap \-J\-version\fP
.fi     
.nf     
\f3javap \-J\-Djava\&.security\&.manager \-J\-Djava\&.security\&.policy=MyPolicy MyClassName\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
D
duke 已提交
109 110


R
rgallard 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
For more information about JVM options, see the \f3java(1)\fR command documentation\&.
.TP
-s
.br
Prints internal type signatures\&.
.TP
-sysinfo
.br
Shows system information (path, size, date, MD5 hash) of the class being processed\&.
.TP
-constants
.br
Shows \f3static final\fR constants\&.
.TP
-c
.br
Prints disassembled code, for example, the instructions that comprise the Java bytecodes, for each of the methods in the class\&.
.TP
-verbose
.br
Prints stack size, number of locals and arguments for methods\&.
.TP
-classpath \fIpath\fR
.br
Specifies the path the \f3javap\fR command uses to look up classes\&. Overrides the default or the \f3CLASSPATH\fR environment variable when it is set\&.
.TP
-bootclasspath \fIpath\fR
.br
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 \f3jre/lib/rt\&.jar\fR and several other JAR files\&.
.TP
-extdir \fIdirs\fR
.br
Overrides the location at which installed extensions are searched for\&. The default location for extensions is the value of \f3java\&.ext\&.dirs\fR\&.
.SH EXAMPLE    
Compile the following \f3DocFooter\fR class:
.sp     
.nf     
\f3import java\&.awt\&.*;\fP
.fi     
.nf     
\f3import java\&.applet\&.*;\fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3public class DocFooter extends Applet {\fP
.fi     
.nf     
\f3        String date;\fP
.fi     
.nf     
\f3        String email;\fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3        public void init() {\fP
.fi     
.nf     
\f3                resize(500,100);\fP
.fi     
.nf     
\f3                date = getParameter("LAST_UPDATED");\fP
.fi     
.nf     
\f3                email = getParameter("EMAIL");\fP
.fi     
.nf     
\f3        }\fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3        public void paint(Graphics g) {\fP
.fi     
.nf     
\f3                g\&.drawString(date + " by ",100, 15);\fP
.fi     
.nf     
\f3                g\&.drawString(email,290,15);\fP
.fi     
.nf     
\f3        }\fP
.fi     
.nf     
\f3}\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
The output from the \f3javap DocFooter\&.class\fR command yields the following:
.sp     
.nf     
\f3Compiled from "DocFooter\&.java"\fP
.fi     
.nf     
\f3public class DocFooter extends java\&.applet\&.Applet {\fP
.fi     
.nf     
\f3  java\&.lang\&.String date;\fP
.fi     
.nf     
\f3  java\&.lang\&.String email;\fP
.fi     
.nf     
\f3  public DocFooter();\fP
.fi     
.nf     
\f3  public void init();\fP
.fi     
.nf     
\f3  public void paint(java\&.awt\&.Graphics);\fP
.fi     
.nf     
\f3}\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
The output from \f3javap -c DocFooter\&.class\fR command yields the following:
.sp     
.nf     
\f3Compiled from "DocFooter\&.java"\fP
.fi     
.nf     
\f3public class DocFooter extends java\&.applet\&.Applet {\fP
.fi     
.nf     
\f3  java\&.lang\&.String date;\fP
.fi     
.nf     
\f3  java\&.lang\&.String email;\fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3  public DocFooter();\fP
.fi     
.nf     
\f3    Code:\fP
.fi     
.nf     
\f3       0: aload_0       \fP
.fi     
.nf     
\f3       1: invokespecial #1                  // Method\fP
.fi     
.nf     
\f3java/applet/Applet\&."<init>":()V\fP
.fi     
.nf     
\f3       4: return        \fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3  public void init();\fP
.fi     
.nf     
\f3    Code:\fP
.fi     
.nf     
\f3       0: aload_0       \fP
.fi     
.nf     
\f3       1: sipush        500\fP
.fi     
.nf     
\f3       4: bipush        100\fP
.fi     
.nf     
\f3       6: invokevirtual #2                  // Method resize:(II)V\fP
.fi     
.nf     
\f3       9: aload_0       \fP
.fi     
.nf     
\f3      10: aload_0       \fP
.fi     
.nf     
\f3      11: ldc           #3                  // String LAST_UPDATED\fP
.fi     
.nf     
\f3      13: invokevirtual #4                  // Method\fP
.fi     
.nf     
\f3 getParameter:(Ljava/lang/String;)Ljava/lang/String;\fP
.fi     
.nf     
\f3      16: putfield      #5                  // Field date:Ljava/lang/String;\fP
.fi     
.nf     
\f3      19: aload_0       \fP
.fi     
.nf     
\f3      20: aload_0       \fP
.fi     
.nf     
\f3      21: ldc           #6                  // String EMAIL\fP
.fi     
.nf     
\f3      23: invokevirtual #4                  // Method\fP
.fi     
.nf     
\f3 getParameter:(Ljava/lang/String;)Ljava/lang/String;\fP
.fi     
.nf     
\f3      26: putfield      #7                  // Field email:Ljava/lang/String;\fP
.fi     
.nf     
\f3      29: return        \fP
.fi     
.nf     
\f3\fP
.fi     
.nf     
\f3  public void paint(java\&.awt\&.Graphics);\fP
.fi     
.nf     
\f3    Code:\fP
.fi     
.nf     
\f3       0: aload_1       \fP
.fi     
.nf     
\f3       1: new           #8                  // class java/lang/StringBuilder\fP
.fi     
.nf     
\f3       4: dup           \fP
.fi     
.nf     
\f3       5: invokespecial #9                  // Method\fP
.fi     
.nf     
\f3 java/lang/StringBuilder\&."<init>":()V\fP
.fi     
.nf     
\f3       8: aload_0       \fP
.fi     
.nf     
\f3       9: getfield      #5                  // Field date:Ljava/lang/String;\fP
.fi     
.nf     
\f3      12: invokevirtual #10                 // Method\fP
.fi     
.nf     
\f3 java/lang/StringBuilder\&.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;\fP
.fi     
.nf     
\f3      15: ldc           #11                 // String  by \fP
.fi     
.nf     
\f3      17: invokevirtual #10                 // Method\fP
.fi     
.nf     
\f3 java/lang/StringBuilder\&.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;\fP
.fi     
.nf     
\f3      20: invokevirtual #12                 // Method\fP
.fi     
.nf     
\f3 java/lang/StringBuilder\&.toString:()Ljava/lang/String;\fP
.fi     
.nf     
\f3      23: bipush        100\fP
.fi     
.nf     
\f3      25: bipush        15\fP
.fi     
.nf     
\f3      27: invokevirtual #13                 // Method\fP
.fi     
.nf     
\f3 java/awt/Graphics\&.drawString:(Ljava/lang/String;II)V\fP
.fi     
.nf     
\f3      30: aload_1       \fP
.fi     
.nf     
\f3      31: aload_0       \fP
.fi     
.nf     
\f3      32: getfield      #7                  // Field email:Ljava/lang/String;\fP
.fi     
.nf     
\f3      35: sipush        290\fP
.fi     
.nf     
\f3      38: bipush        15\fP
.fi     
.nf     
\f3      40: invokevirtual #13                 // Method\fP
.fi     
.nf     
\f3java/awt/Graphics\&.drawString:(Ljava/lang/String;II)V\fP
.fi     
.nf     
\f3      43: return        \fP
.fi     
.nf     
\f3}\fP
.fi     
.nf     
\f3\fP
.fi     
.sp     
.SH SEE\ ALSO    
.TP 0.2i    
\(bu
javac(1)
.TP 0.2i    
\(bu
java(1)
.TP 0.2i    
\(bu
jdb(1)
.TP 0.2i    
\(bu
javah(1)
.TP 0.2i    
\(bu
javadoc(1)
.RE
.br
'pl 8.5i
'bp