How to search HTML documentation created by javadoc?

I am a Java beginner and I see a lot of documentation for the Java API in a similar HTML format, for example. Java ™ Platform, the standard version of the API API . I don’t see the search option in any of these documents, so when I need to find, for example random(), I go to the index , select R and use the browser to search for random . Is there a faster way, for example. global search?

+4
source share
2 answers

The new JavaDoc.Next in JDK9 outputs HTML5 output and has a search box. It indexes package names, type names, and member names according to the JDK 9 Language and Tooling Features from JavaOne 2015.

+4
source

It seems that this is the source that you are looking for. (i.e. select java se 8 api documentation) But I'm not sure if it will be faster than ctrl + f or IDE support.

+1
source

Source: https://habr.com/ru/post/1616083/


All Articles