IDonWEB
RSS Feeds Directory
Simple mode | Advanced mode

Most Popular Feeds Newest Feeds    

Weblogs [Personal] (1032) Weblogs [Computers] (439) Business (990) Computers & Internet (929)
News (442) Miscellaneous (1617) Regionals (559) Companies (1827)
Total feeds: 7835

Submit Your Feed

About Focus on Java
Put this feed on your website
Description: Focus on Java
Format: RSS 1.0
Url: http://z.about.com/6/g/java/b/index.rdf
 
Latest headlines
About Focus on Java
Create a LinkedList
Thu, 14 Feb 2008 07:30:00 -0600

The Java Collections Framework is chock full of useful abstract classes, interfaces, and concrete classes that you can use to handle your collections of stuff. Some of...
Java Acronyms Galore
Tue, 12 Feb 2008 07:16:00 -0600

Have you ever wondered what all of those acronyms stand for? You know the ones I'm talking about: API IDE RMI and so on. I have compiled a list of Java acronyms with their...
Autoboxing: A New Java 5 Feature
Thu, 07 Feb 2008 07:30:00 -0600

I must admit that I do not like the term "autoboxing", but I love the way it works. Autoboxing is a new feature of Java 5. If you...
Sun Microsystems to Celebrate 500,000 Certifications
Tue, 05 Feb 2008 09:30:00 -0600

Sun Microsystems is on the verge of hitting the half a million mark! Currently, there are approximately 480,000 Sun-certified professionals roaming the globe. Could you be the person...
Sun Tech Days Turns Ten
Thu, 31 Jan 2008 17:50:00 -0600

Sun Tech Days is a travelling road-show that has been ongoing for the past ten years. The concept is to provide technical education in Java Technology and Solaris products....
What's a Primitive Wrapper Class?
Tue, 29 Jan 2008 18:14:00 -0600

It may sound like a course on the basics of gift-wrapping, but a primitive wrapper class is altogether different. If you recall your primitive data types (I know you...
A New Reserved Word: enum
Wed, 23 Jan 2008 07:30:00 -0600

So, I am happily coding along one day when I type in the following code: Enumeration enum = myShoppingList.elements(); enum.hasMoreElements();) // and so on and so forth I compile my code and I...
Java Array or Vector: What's the Difference?
Mon, 21 Jan 2008 07:39:00 -0600

Arrays and Vectors in Java are quite similar. They both represent a collection of similar items. For example, a good usage of an array would be a variable...
Great Sites for the Java Newbie
Thu, 17 Jan 2008 07:36:00 -0600

If you have ever done a search for Java tutorials or introduction to Java, I have little doubt that your search was fruitless. In fact, there are thousands of...
Java Constants
Tue, 15 Jan 2008 09:58:00 -0600

There are two things in life that are constant.... death and taxes. In Java, unlike in life, you have control over what is constant and what is not. ...