Menu
Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Java
XML parsing with Java
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="John B. Matthews, post: 3698900"] Is it your intention to claim that "Google - millions of hits" is a meaningful metric of Java platform usage?[/QUOTE] Egad, no! I should have reiterated Arne's caveat. OTOH, the result is not entirely unexpected and parallels Arne's (considerable) experience. Yes, this is confounding; I was sticking with the developer version numbers: Indeed, such numbers are almost meaningless, yet strangely fascinating. Cf <[URL]http://www.google.com/intl/en/press/zeitgeist2008/index.html[/URL]> Here's a very rough measure of features/version from skimming the Java 1.5 API documentation (J2SE 5.0): <code> #!/bin/sh DIR=/Developer/Documentation/Java/docs ECHO=/bin/echo for ((i=0; i<=6; i++)) ; do ${ECHO} -n "Since 1.${i}: " grep -R "<DD>1.${i}" $DIR/* | wc -l done </code> <console> $ ./since.sh Since 1.0: 26 Since 1.1: 89 Since 1.2: 965 Since 1.3: 550 Since 1.4: 1384 Since 1.5: 1321 Since 1.6: 0 </console> [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Java
XML parsing with Java
Top