Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have downloaded Java API documentation from http://www.oracle.com/technetwork/java/javase/downloads/index.html#docs and have supposedly attached it to Eclipse using the

Window->Preferences->Java->Installed JREs->Edit->"Select rt.jar"->Javadoc Location

And the location has been accepted and "Validates" just fine. However, for the life of me, I can't get Eclipse to show the Javadocs in the tooltip whene I hover over an item (for example in the declaration of an ArrayList). I have also restarted Eclipse in attempts to get it to work

What am I doing wrong?

share|improve this question
1  
Ah. Didn't realise this at the time, since I'm developing an Android application I don't seem to use the JRE jar files, instead use an Android jar file :-/ I attached the java api doc to this file and the tooltip started working. Thanks for your help – Kurru Jan 5 '11 at 23:33

5 Answers

up vote 6 down vote accepted

Eclipse doesn't pull the tooltips from the javadoc location. It only uses the javadoc location to prepend to the link if you say open in browser, you need to download and attach the source for the JDK in order to get the tooltips. For all the JARs under the JRE you should have the following for the javadoc location: http://java.sun.com/javase/6/docs/api/. For resources.jar, rt.jar, jsse.jar, jce.jar and charsets.jar you should attach the source available here.

share|improve this answer
I downloaded that jar and attached it as source for all those jars, but the tool tips and the javadoc viewer both still aren't showing the details – Kurru Jan 5 '11 at 2:41
1  
Is the JRE you are modifying the default? Also is it the JRE selected for the project(right click on the project and go to preferences)? If so can you press F3 while highlighting a JRE class and pull up the source? – LINEMAN78 Jan 5 '11 at 10:00

To use offline Java API Documentation in Eclipse, you need to download it first. The link for Java 6 docs is "http://download.oracle.com/otn-pub/java/jdk/6u30-b12/jdk-6u30-apidocs.zip" (as of this day).

  1. Extract the zip file in your local directory.
  2. From ecliplse --> Window --> Preferences --> Java --> "Installed JREs" select available JRE (jre6 C:\Program Files (x86)\Java\jre6 for instance) and click Edit.
  3. Select all the "JRE System libraries" using Shift key.
  4. Click "Javadoc Location"
  5. Change "Javadoc location path:" from "http://download.oracle.com/javase/6/docs/api/" to "file:/E:/Java/docs/api/".

It must work as it works for me. I don't need Internet connection to view Java API Documentation in Eclipse anymore.

share|improve this answer
Hmm, this helps alot – Adel Nov 17 '12 at 17:59

Likely a problem with the path that you specified in Javadoc Location. It is pretty finicky. Make sure that it points at the root of where the javadoc starts. It could be a few directories down in the zip you've downloaded.

share|improve this answer
it says: "Location is likely valid. Files 'package-list' and 'index.html' have been found. – Kurru Jan 5 '11 at 2:05
and it still doesnt work btw – Kurru Jan 5 '11 at 2:11
try opening the javadoc view then select a standard class or method. – Konstantin Komissarchik Jan 5 '11 at 2:19
No improvement :( – Kurru Jan 5 '11 at 2:29

Ensure "Preferences" -> "Java" -> "Editor" -> "Hovers" -> "Combined Hover" is checked.

share|improve this answer

I have had a similar issue and looks like that the culprit was the space in the path to the archive (e.g., C:\Program Files\java\jdk). After moving the archive to another directory without spaces in path it started to work.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.