Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is JDK "javap" Command
What Is JDK "javap" Command?
✍: FYIcenter
"javap" is a command line tool provided in JDK (Java Development Kit) to help you read Java bytecode class files and disassembles them into JVM (Java Virtual Machine) assembler instructions.
"javap" command has the following syntax:
Usage: javap <options> <classes> where possible options include: --help -help -h -? Print this help message -version Version information -v -verbose Print additional information -l Print line number and local variable tables -public Show only public classes and members -protected Show protected/public classes and members -package Show package/protected/public classes and members (default) -p -private Show all classes and members -c Disassemble the code -s Print internal type signatures -sysinfo Show system info (path, size, date, SHA-256 hash) of class being processed -constants Show final constants --module <module>, -m <module> Specify module containing classes to be disassembled -J<vm-option> Specify a VM option --module-path <path> Specify where to find application modules --system <jdk> Specify where to find system modules --class-path <path> Specify where to find user class files -classpath <path> Specify where to find user class files -cp <path> Specify where to find user class files -bootclasspath <path> Override location of bootstrap class files --multi-release <version> Specify the version to use in multi-release JAR files GNU-style options may use = instead of whitespace to separate the name of an option from its value. Each class to be shown may be specified by a filename, a URL, or by its fully qualified class name. Examples: path/to/MyClass.class jar:file:///path/to/MyJar.jar!/mypkg/MyClass.class java.lang.Object
2021-08-21, 806🔥, 0💬
Popular Posts:
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
What Is poi-3.5.jar - Part 2? poi-3.5.jar is one of the JAR files for Apache POI 3.5, which provides...
What JAR files are required to run dom\Writer.java provided in the Apache Xerces package? 3 JAR file...
JDK 11 jdk.crypto.ec.jmod is the JMOD file for JDK 11 Crypto EC module. JDK 11 Crypto EC module comp...
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...