devxlogo

Building Javadocs from the Command Line

Building Javadocs from the Command Line

Some IDEs provide support for generating HTML from Javadocs automatically, but this can also be achieved using the command line:

javadoc tool

The most basic usage of the tool is the line below:

javadoc JavaFile.java

That will generate HTML from the Javadoc comments in JavaFile.java.

A more practical use of the command line tool, that will recursively read all Java files in [source-directory], create documentation for the [package.name] and all sub-packages, and also place the generated HTML in the [docs-directory] is:

javadoc -d [docs-directory] -subpackages -sourcepath [source-directory] [package.name]
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist