J2SE 5: New wine in new bottle with old corkMarch 15th, 2005 J2SE stands for Java 2 Standard Edition. The 2 stands for version 2 of the platform.
Java SE Goes Beta (Feature Complete). Download Now.February 17th, 2006 Java SE 6 Beta offers the first feature complete version of next major release of the Java SE platform. Sun expects to ship the final release of Java SE 6 in the fall of 2006.
Three Free Notable Java Software / APISeptember 8th, 2005 GMail API for Java
GMailer API for Java (g4j) is set of API that allows Java programmer to communicate to GMail. With G4J programmers can made Java based application that based on huge storage of GMail.
Java Popularity Statistics (from JavaOne 2008)May 7th, 2008 Sun revealed the following statistics about Java at JavaOne 2008:
1. 90% of Personal Computers on Internet have Java
2.
Gripe: Java blog aggregator: javablogs.comFebruary 16th, 2004 Few Gripes on Java.blogs:
After few days with java.blogs I realized I don't want a few things. For example I am not interested in knowing anything about IDEA releases.
Java EE 6 HighlightsMay 6th, 2008 The key features of Java EE 6 (Java Enterprise Edition version 6) are:
Modular Platform - Java EE 6 introduces profiles targeted for particular segment of users like web developers or mobile developers. Java Profiles allows you to select Java EE 6 features to be included in a profile.
Java Blogger's in IndiaDecember 11th, 2005 I want to create a list of Java blogger's in India or of Indian origin. If you are one please state so with your url in the comment below.
Top 10 Java LiesMarch 6th, 2006 Here are the top ten Java lies I have heard over the years. Feel free to add yours in the comments.
How To Pass Command Line Arguments To Ant Task / ScriptAugust 17th, 2008 Ant is a popular, high quality Java based build and deployment tool from Apache Foundation. You can invoke Java programs in ant using the java task.
Java Framework To Create Java FrameworksJanuary 26th, 2006 I have seen way too many java frameworks, way beyond my limits of tolerance. And I have found a perfect solution.
How To Solve Apache Ant java Task Execution ErrorsJuly 26th, 2006 I have seen myriad errors when executing java task. For example I have seen: javax.xml.parsers.FactoryConfigurationError?: Provider org.apache.xerces.jaxp.DocumentBuilderFactoryImpl? not found when executing the java task in jdk1.5.0
The problems with debugging the errors is that the commandline used by java task is not visible, even in verbose mode.
Few useful links on Java UI developmentJanuary 24th, 2004
A compendium of useful links on Java Human Interface (look and feel):
Papers on Java Software Human Interface Issues
Designing a cross-platform look and feel with Java
Forums to search for Swing answers:
Swing Forum
Swing Forum: Archive
Ruby on Java = JRuby - Project to WatchDecember 18th, 2005 JRuby is a project to watch for. It implements Ruby on Java virtual machine.
Back To Java...July 29th, 2008 I am on to create a cool (really really cool) application with Java back-end, distributed processing and all. Expect to see lots of Java tech tips and articles in the coming days.
How to Sanitize Blog Title, to use as Permalink, in JavaJune 12th, 2005 Most Blog software provides an option to use a sanitized version of the post title as part of permalink url. Thingamablog, a Java based offline blogging software, doesn't do it.
August 23rd, 2008 at 1:38 pm
Can we stop with the pernicious and erroneous assertion that using the ‘+’ operator to concatenate strings is slow.
Run a benchmark first.
For common cases using the + operator to build a string is no slower than the old style String buffer approach. It hasn’t been since around Java 1.4.2 or 1.5. It is slower for large concatenations - assembling say 1000 or more strings into one larger string…
http://paulbarry.com/articles/2007/03/15/java-string-concatenation
http://www.ibm.com/developerworks/java/library/j-jtp04223.html
http://www.javaworld.com/javaforums/showflat.php?Cat=2&Number=94239&an=0&page=0
OK?
August 23rd, 2008 at 7:15 pm
You mean “java.util.ArrayList is to java.util.Vector”.
August 24th, 2008 at 12:06 am
@Porter
I ran a benchmark, you too can run one if you like. Try using + for large concatenation and it really sucks. Yes, I am talking about large amount of Strings like say in a for loop - “best way to concatenate large number of String objects”. I thought I was very clear on that.
August 24th, 2008 at 12:06 am
@Burt
Yes, ArrayList, my bad. Thanks.
August 24th, 2008 at 9:59 am
Here is an article I wrote on the subject:
StringBuffer vs. StringBuilder performance comparison
You might find it useful.
Cheers
August 29th, 2008 at 9:27 am
Thanks for the link