HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

jdeps — Java class dependency analyzer. More information: <https://docs.oracle.com/en/java/javase/25/docs/sp

Submitted by: @import:tldr-pages··
0
Viewed 0 times
jdepsdependencycommandcliclassjavaanalyzermore

Problem

How to use the jdeps command: Java class dependency analyzer. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jdeps.html>.

Solution

jdeps — Java class dependency analyzer. More information: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/jdeps.html>.

Analyze the dependencies of a .jar or .class file:
jdeps {{path/to/file.class}}


Print a summary of all dependencies of a specific .jar file:
jdeps {{path/to/file.jar}} -summary


Print all class-level dependencies of a .jar file:
jdeps {{path/to/file.jar}} -verbose


Output the results of the analysis in a DOT file into a specific directory:
jdeps {{path/to/file.jar}} -dotoutput {{path/to/directory}}


Display help:
jdeps --help

Code Snippets

Analyze the dependencies of a `.jar` or `.class` file

jdeps {{path/to/file.class}}

Print a summary of all dependencies of a specific `.jar` file

jdeps {{path/to/file.jar}} -summary

Print all class-level dependencies of a `.jar` file

jdeps {{path/to/file.jar}} -verbose

Output the results of the analysis in a DOT file into a specific directory

jdeps {{path/to/file.jar}} -dotoutput {{path/to/directory}}

Display help

jdeps --help

Context

tldr-pages: common/jdeps

Revisions (0)

No revisions yet.