All Posts programming jdeps: Java class dependency analyzer

jdeps: Java class dependency analyzer

· 133 words · 1 minute read

jdeps is a command-line program to analyze dependencies of Java class. It is Java class dependency analyzer.

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

jdeps path/to/filename.class

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

jdeps path/to/filename.jar -summary

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

jdeps path/to/filename.jar -verbose

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

jdeps path/to/filename.jar -dotoutput path/to/directory

Display help:

jdeps --help

More information: https://docs.oracle.com/en/java/javase/20/docs/specs/man/jdeps.html .

I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .