Some of the Options Supported by the javap Utility : Introduction « Language « Java Tutorial

Java Tutorial
1. Language
2. Data Type
3. Operators
4. Statement Control
5. Class Definition
6. Development
7. Reflection
8. Regular Expressions
9. Collections
10. Thread
11. File
12. Generics
13. I18N
14. Swing
15. Swing Event
16. 2D Graphics
17. SWT
18. SWT 2D Graphics
19. Network
20. Database
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web Services SOA
27. EJB3
28. Spring
29. PDF
30. Email
31. J2ME
32. J2EE Application
33. XML
34. Design Pattern
35. Log
36. Security
37. Apache Common
38. Ant
39. JUnit
Java
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Tutorial » Language » Introduction 
1. 1. 12. Some of the Options Supported by the javap Utility
Option          Description

-b              This command ensures backward compatibility with earlier versions of javap.

-bootclasspath  This command, followed by a path, specifies the path from which to load the bootstrap classes. Normally these would be classes contained in the /lib/rt.jar archive.

-c              This command prints the JVM instructions for the execution of each method. This tells you what the bytecode for each method actually does.

-classpath      This command, followed by a user-specified class path, overrides the system CLASSPATH environment variable.

-extdirs        This command, followed by a directory, overrides the location the system searches for installed extensions. The default location is /lib/ext.

-help           This command prints information about the javap utility.

-Jflag          This command passes the specified flag directly to the runtime system.

-l              This command displays line and local variables.

-package        This command shows only package, protected, and public classes and members. This is the default.

-private        This command shows information about all classes and members.

-protected      This command displays information about protected and public classes and members only.

-public         This command shows information only about public classes and members.

-s              This command prints internal type signatures.

-verbose        This command prints additional information for each method including stack size, local variable information, and arguments.
1. 1. Introduction
1. 1. 1. Developing a Java program involves
1. 1. 2. JDK Utilities
1. 1. 3. See the details of the compilation: use the verbose option
1. 1. 4. A profiler is used to analyze how much time a program spends in each part of the code.
1. 1. 5. The syntax to use the javac tool
1. 1. 6. Java Compiler Options
1. 1. 7. The java Tool
1. 1. 8. Commonly Used Java Command Options
1. 1. 9. The javadoc Tool
1. 1. 10. The jar Tool
1. 1. 11. The javap Tool
1. 1. 12. Some of the Options Supported by the javap Utility
1. 1. 13. The jarsignature Tool
1. 1. 14. The native2ascii Tool
1. 1. 15. The jconsole Tool
1. 1. 16. Set the memory available to the JVM
1. 1. 17. Java memory command line arguments
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.