snippetbashTip
jdeps — Java class dependency analyzer. More information: <https://docs.oracle.com/en/java/javase/25/docs/sp
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}} -summaryPrint all class-level dependencies of a
.jar file:jdeps {{path/to/file.jar}} -verboseOutput 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 --helpCode 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}} -summaryPrint all class-level dependencies of a `.jar` file
jdeps {{path/to/file.jar}} -verboseOutput 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 --helpContext
tldr-pages: common/jdeps
Revisions (0)
No revisions yet.