Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I access the javadoc from a .jar file in netbeans

I recently downloaded the microba datepicker and it comes with three JAR files: the source code, the compiled coled and one JAR for javadoc.

I use netbeans and tried everything within my limited abilities to get access to that documentation, but just couldnt make it ... can you help me please to solve that problem?

like image 435
achingfingers Avatar asked Sep 02 '25 07:09

achingfingers


1 Answers

To read the javadoc from a .jar-file one first has to unpack it. To do so, open your console, navigate to the folder where the jar file is located an unpack it using the following command:

jar xf yourFileNameHere.jar

Then you can access the documentation.

like image 136
achingfingers Avatar answered Sep 04 '25 20:09

achingfingers