vote up 2 vote down star
2

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.)

flag

76% accept rate

2 Answers

vote up 5 vote down check

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/db33bb0f6c2b/src/share/classes/java/util/List.java

link|flag
Thanks a lot. I went there trying to find the source for java.nio.file.FileRef, but I couldn't find it. Could you please help me? Thank you. – Hosam Aly Jan 4 at 10:20
You can find that one here: hg.openjdk.java.net/nio/nio/… (or perhaps see here: stackoverflow.com/questions/410705/… ) – Rasmus Faber Jan 4 at 10:41
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 at 18:09
vote up 2 vote down

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|flag
Not exactly. I went there before I asked but I couldn't find my way around the Mercurial interface. :( – Hosam Aly Jan 4 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 at 10:15

Your Answer

Get an OpenID
or

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