javadocs.org launched!

java

I am launching javadocs.org today! The site is strikingly similar to my cfdocs.org site for CFML, but just as useful.

The site is basically a URL shortcut to java documentation, for example if you want the documentation for the String class, simply type: javadocs.org/string. You can also type in the full class name http://javadocs.org/java.lang.string, but only the class name is needed (which is nice if your not sure what package a class is in).

You can also type in a package name, for example: javadocs.org/java.util

I will attempt to keep it up to date with the latest java documentation. It currently points to J2SE 1.4.2, and J2EE 1.4. I am accepting donations through Amazon honor system for hosting, and upkeep.

Comments and suggestions are welcome.



Related Entries

5 people found this page useful, what do you think?

Trackbacks

Trackback Address: 133/E6D55BF7FBDBB0F77777AE45BD2F20DA

Comments

On 05/11/2004 at 8:24:48 PM EDT Sam Pullara wrote:
1
Awesome! Just added it as a bookmarklet to Safari:

javascript:q=prompt('Java%20Class:','');location.href='http://javadocs.org/'+q;

On 05/12/2004 at 2:08:19 AM EDT euxx wrote:
2
Sam, not sure about Safari but in any Mozilla/Firefox you can use bookmark keywords. http://devedge.netscape.com/viewsource/2002/bookmarks/

On 05/12/2004 at 3:40:46 AM EDT Pete Freitag wrote:
3
Check out my Searchlets page: http://www.petefreitag.com/searchlets/ I have bookmarklets, and search plugins there for all browsers.

On 05/12/2004 at 6:01:19 AM EDT dwlt wrote:
4
Nice, but would be even nicer if you could add support for J2ME and its associated APIs (MIDP 1.0, MIDP 2.0, etc).

On 05/12/2004 at 8:21:52 AM EDT Henk van Voorthuijsen wrote:
5
Excellent idea! Now why can't I find java.sql.List or java.awt.List ?

On 05/12/2004 at 8:26:21 AM EDT Henk van Voorthuijsen wrote:
6
Oops. I misunderstood there. Remaining question: what in case of name collisions (java.awt.List vs. java.util.List) ?

On 05/12/2004 at 9:57:19 AM EDT sjjung wrote:
7
Simple but very useful site. It would be better if more intelligent for various cases. Sam Pullara's bookmarlet is cool~.

On 05/12/2004 at 1:53:02 PM EDT Pete Freitag wrote:
8
Yeah, it would be nice if name collisions resulted in a page that listed the options. Perhaps for another day. Also would be nice to add more API's.

On 05/12/2004 at 2:35:32 PM EDT dwlt wrote:
9
Would it help if I offered to help add the J2ME APIs, or at least made a donation to help you do the work? :-D

On 05/12/2004 at 2:36:01 PM EDT Daniel Farinha wrote:
10
Great tool! As far as improvements, apart from the 'important' name collision issue, someone also noted that different JDK versions differ, so it would be nice if we can select which version to search. J2ME also very much requested! ;)

On 05/12/2004 at 4:57:24 PM EDT Pete Freitag wrote:
11
I will add J2ME API's as soon as I have a chance.

On 05/12/2004 at 5:47:54 PM EDT Julian Hyde wrote:
12
Great minds think alike! I have a SourceForge project called Joogle [ http://sourceforge.net/projects/joogle ] to do much the same thing. We got it working, but never got round to launching it and hosting it.

It has a couple of facilities that you haven't gotten to yet: (a) end-users can register their own sites, (b) if the same package occurs on multiple sites, it will give you a choice, (c) niceties like a package-list file which make the site look like a regular (if huge!) javadoc site.

Last count, its database contains about 200 sites containing about 10,000 packages.

Please drop me a line. I think you've built something really great here, and I'd like to pool our resources to build something even better for the Java community.

On 05/12/2004 at 9:44:31 PM EDT Sam Pullara wrote:
13
You can use keywords in safari but it is slower than using a bookmarklet that gets launched with a key combo, i.e. to search i type: [Apple-4]httpsession[enter] for keywords, i have to type Apple-Lj[space]httpsession[enter] and memorize all the keywords.

On 05/13/2004 at 10:55:15 AM EDT MonadX wrote:
14
Even more powerful, on esus.com, you can do a full-text search on the javadocs of J2SE1.3.1, J2SE1.4.1, J2SE1.5.0, J2EE1.3, J2EE1.4.

http://www.esus.com/docs/SiteSearchSubmit.jsp?type=a

On 05/14/2004 at 1:31:43 PM EDT androbtech wrote:
15
Congratulations.

On 05/17/2004 at 5:04:17 PM EDT Doug Kramer wrote:
16
Very nice.

Notice that starting with the 1.5.0 API, you can include the three frames as part of the target URL. For example, to display the String class inside the javadoc main frame: http://java.sun.com/j2se/1.5.0/docs/api/index.html?java/lang/String.html We use javascript to pick up String.html from the query string. Unfortunately, there is a delay in displaying the class page, due to the loading of the class list (in the lower left frame). But frames might be an option to consider adding.

-Doug Kramer Javadoc team

On 05/21/2004 at 2:11:40 PM EDT Insac wrote:
17
I'm going to bookmark your site with Mozilla "bookmark keyword". I already had a "j2se" bookmark on Mozilla but it had to use Google and its "I'm feeling lucky" feature:

Before javadocs.org http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=allintitle%3A+%s+%28Java+2+Platform+SE+v1.4.2%29+site%3Ajava.sun.com&btnI=I'm%20Feeling%20Lucky

After javadocs.org http://javadocs.org/%s

Thank you!!

On 05/21/2004 at 5:30:59 PM EDT Sumit Kishore wrote:
18
Some suggestions :

1) A link to suggestions, or at least to this page. I had to google for "blog javadocs.org", because I remembered reading a blog about this.

2) Partial class name searches. I know there's only 1-2 classes which start with "JTextF", why should I have to write the whole thing? I see this as working in conjunction with whatever you come up with for resolving name collisions - presumably a page with link to each colliding class.

3) Specify the JDK as part of the search , with some default.

4) I personally use <a href='http://sumitkishore.tripod.com/java/j2se14api.html'>this layout</a> to view the javadocs, and have found it to be easier to navigate than the Sun default. Maybe an option to switch layouts?

Sumit.

On 05/30/2004 at 10:07:07 PM EDT Sam Pullara wrote:
19
To all the people that suggested bookmark keywords over my bookmarklet at the top. The bookmarklet is much faster than keywords, one keystroke to bring up the input window, then type what you want, and press enter versus getting to the location bar, typing the keyword and space and the search plus enter. Anyway, whatever you find easier.

On 08/20/2005 at 6:49:29 AM EDT jin wrote:
20
aaaaaaaaaaaaaa

On 01/03/2007 at 3:27:32 AM EST Sam wrote:
21
Well I'm a few years too late at commenting but I just found this today and I think it's very handy!

Post a Comment




  



Spell Checker by Foundeo

Recent Entries



foundeo


did you hack my cf?