up vote 3 down vote favorite
2
share [g+] share [fb]

I cannot for the life of me attach the java source code to eclipse so I can see the inner workings of the language. Not even something as simple as the String Class.

when I run java -version this is what I have:

java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode, sharing)

I am downloading the java souce from: http://download.java.net/jdk6/source/

And in eclipse when I attach it It says:

The JAR file "C:\Program Files\Java\jre6\jdk-6u14-fcs-src-b08-jrl-21_may_2009.jar" 
has no source attachment.

What am I doing wrong?

link|improve this question

12% accept rate
Attach to what? – lutz Jul 21 '09 at 6:45
feedback

3 Answers

Normally, if you have installed the JDK6u14, eclipse should detect it and declare it automatically in its "installed JRE" list.

If not, you can add that JDK through "Windows/Preferences": Java > Installed JREs:

Just point to the root directory if your JDK: it should include the sources of the JDK (src.zip), automatically detected and attached to rt.jar by eclipse.

alt text

link|improve this answer
E:\Program Files\Java\jre6 -> Java Home E:\Sun\SDK\jdk -> Path Variable I have these two folders. Which one should I point to what?!? Is there a difference between the JDK and SDK? I because I did a search on my computer and I can't find src.zip. I have rt.jar in both folder but I don't know what to do with it... – hello_world_infinity Jul 21 '09 at 7:11
Under XP I have never seen Eclipse picking up the JDK - only the public JRE installed with it. – Thorbjørn Ravn Andersen Jul 21 '09 at 7:47
@ Thorbjørn Ravn Andersen : eclipse will detect it if you specify the vm to use when launching Eclipse in the eclipse.ini – VonC Jul 21 '09 at 8:24
The problem is that Sun's source code is not the same as Android's. Any idea how to find the exact source code on Google's devices (Java/JDK API)? – kilaka Jul 11 '11 at 18:49
feedback

The easiest way to do this, is to install a JDK and tell Eclipse to use it as the default JRE. Use the default install.

(from memory)

Open Window -> Prefences. Select Installed Java runtimes, and choose Add. Navigate to root of your JDK (\Programs...\Java) and click Ok. Then select it to be the default JRE (checkmark).

After a workspace rebuild, you should have source attached to all JRE classes.

link|improve this answer
feedback

Hold ctrl key and then click on class of which you want to see the inner working (for ex: String) then you will find there button "Attact Source". Click on it. Then click on External Folder . Then browse to your jdk location .. ex : C:\Program Files\Java\jdk1.6.0. That's it

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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