Problem adding javadoc third party NetBeans

I am trying to add zxing java doc. I tried different approaches:
1) Java platforms> Javadoc, not Tools> Libraries> Javadoc
2) * Go to "Project Properties"> "Libraries"
  * On the "Compilation" tab, click the "Add JAR / Folder" button and find your library
  * On the "Compilation" tab, click the "Edit" button with the library of your choice
  * Add the javadoc path

I tried different paths:
a) javadoc folder containing index.html
b) docs folder containing javadocs
c) zip file containing docs folder

But none of this helped me - I always get "Javadoc not found. The Javadoc documentation for this item does not exist or you did not add the specified Javadoc in the Java platform manager or in the Library Manager."

+3
source share
2 answers

To add a third-party library javadoc, you first need to create a library package inside Netbeans. Go to the window Library Manager (Tools > Libraries)and create New Library. You will need to add the necessary jar files manually in the tab Library Classpath.

Then go to the tab Javadocand specify the path to your javadoc zip file. Click OKand Netbeans will display the documentation immediately.

+1
source

zip , index.html , . .

0

All Articles