Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I like to see what a method in the Java API does. So I want the JDK Source Code. Before I re-installed Linux I had the scr.zip package with all the official source code in it. I just had to tell Eclipse where this file is and I could see the code. But now I don't have the file anymore...

So the question is: Where can I find it?
Please don't paste the Google results here. I searched already for quite some time, but I can't find it...

Thanks in advance
Martijn

share|improve this question
2  
I've always found the src.zip file that contains the public Java API in the JDK installation directory. Is that what you're looking for (I've mainly used Windows, so maybe the Linux distro doesn't have it). – Ash May 24 '10 at 12:21

6 Answers

up vote 32 down vote accepted

You haven't said which version you want, but the JDK 6 source code can be downloaded here, and JDK 7 here.

Additionally you can use the Mercurial servers: 6 7

share|improve this answer
Yes; lets say I want 6 and then on that download page, what to I have do download? The big file jdk-6u21-ea-src-b04-jrl-05_may_2010.jar, 136.48 MB? I already downloaded that one. But doesn't contain the source code. – Martijn Courteaux May 24 '10 at 12:06
@Martijn: Did you try downloading the big jar file and then reading the README inside it? Basically you just run it with java -jar jdk-6u21-ea-src-b04-jrl-05_may_2010.jar. It will extract the source. – Jon Skeet May 24 '10 at 12:30
Yes, I did it. And I extracted it like you wrote. But there is no source jar or zip in it. – Martijn Courteaux May 24 '10 at 13:31
@Martijn: You don't extract the jar file - you execute it. That then extracts the source to whichever directory you want. You don't end up with a zip or jar file - you end up with the source in your file system. You can then tell Eclipse to use that. – Jon Skeet May 24 '10 at 13:52
show 2 more comments

I had this problem with my Ubuntu.

All I needed to do to get sources for my java insallation was:

sudo apt-get install sun-java6-source 
share|improve this answer

This file is contained in the standard JDK download. Also your Linux system probably have JDK in the repository. In my Ubuntu Linux file is located here: /usr/lib/jvm/java-6-sun-1.6.0.20/src.zip

share|improve this answer
Aha! Can you post which packages you have installed for your Java VM and JDK, please. Because I don't have that folder. – Martijn Courteaux May 24 '10 at 12:25
I installed sun-java6-jdk. – vsb May 24 '10 at 14:03

Yes!! Got it!

I downloaded the Java Developer Kit (JDK) from sun.com for Linux. There was src.zip in. But first I uninstalled all Java packages with synaptic.

share|improve this answer
note that under Linux there's really no need to be root to install Java. I always (since more than ten years) install Java as a non-root user on my Un*x systems (so, no, I don't use apt-get / synaptic / whatever). – SyntaxT3rr0r Feb 27 '11 at 15:31

Here the official link for jdk source. http://www.oracle.com/technetwork/java/javase/downloads/index.html (you may need to scroll to the bottom of the page)

share|improve this answer

The official link no longer offers the original source code. The official link and casual google searches will land you with open jdk. Open jdk causes problems with android build unless the build script files are modified. The original package can be found here:

sudo add-apt-repository "deb http://ppa.launchpad.net/ferramroberto/java/ubuntu oneiric main"

This repo still has the sun-java6-source package. Credit: http://pulasthisupun.blogspot.com/2012/05/installing-sun-java-6-with-apt-get-in.html

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.