Is it possible to browse the source code of OpenJDK online, just like I can do with SourceForge's projects? I never used Mercury before, so I felt confused.

(Note: I don't want to download the source. I just want to browse it online, to see how some methods are implemented.)

link|improve this question

feedback

2 Answers

up vote 35 down vote accepted

Use http://hg.openjdk.java.net/ as duncan suggested.

The Mercurial interface there is quite confusing if you are not used to it, and since this is a large project, it can be hard to find what you are looking for.

Here is an example:

To find the JDK6 implementation java.util.List, select "jdk6/jdk6-gate/jdk", find the "default"-branch under "branches" and select "manifest". Then browse to src/share/classes/java/util/List.java.

You should end up at http://hg.openjdk.java.net/jdk6/jdk6-gate/jdk/file/tip/src/share/classes/java/util/List.java

link|improve this answer
2  
For anyone trying this the default branch number changes. So the procedure described is correct, just don't be surprised if the link doesn't work. – Patrick Feb 10 '09 at 18:09
2  
if you want the JDK7 version, it's here: hg.openjdk.java.net/jdk7/jdk7/jdk/file/tip/src/share/classes/… – user102008 Feb 1 '11 at 22:04
2  
@Patrick: if you replace the changeset ID with 'tip', it will always work. The version it points to may change over time, but it will always be the most up-to-date (in some sense). I've edited the post accordingly. – Tom Anderson Apr 5 '11 at 8:47
2  
What does "gate" in the repo name mean? – finnw May 26 '11 at 18:06
2  
Now if I want to see the native code that implements the native methods, where can I find them? – Ustaman Sangat Dec 14 '11 at 15:54
show 7 more comments
feedback

Here's a way to browse the repositories and look at just the bits you want. http://hg.openjdk.java.net/ Is that what you are asking?

link|improve this answer
1  
Not exactly. I went there before I asked but I couldn't find my way around the Mercurial interface. :( – Hosam Aly Jan 4 '09 at 10:11
Sorry, I actually went to openjdk.java.net/projects/nio and tried to find my way from there. I'll check this link again. Thanks. – Hosam Aly Jan 4 '09 at 10:15
feedback

Your Answer

 
or
required, but never shown

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