Featured Articles
All Stories
Using JAXP to both read and write an XML document
Using JAXP to both read and write an XML document
import javax.xml.parsers.*; // JAXP
import javax.xml.transform.*; // JAXP
import javax.xml.transform.dom.DOMSource; // JAXP
import ...
Oracle’s JVM Strategy( JRockit & HotSpot in OpenJDK 7 )
Oracle’s JVM Strategy (JRockit & HotSpot in OpenJDK 7)
JRockit and HotSpot will be merged into single JVM, incorporating the best features from both
The result will ...
Code Conventions – Core Java :: Chapter 4
Code Conventions – Core Java :: Chapter 4
Indentation
Four spaces should be used as the unit of indentation. The exact construction of the indentation
(spaces vs. tabs) is unspecified. ...
Code Conventions – Core Java :: Chapter 3
Code Conventions – Core Java :: Chapter 3
Java Source Files
Java source files have the following ordering:
• Beginning comments
Comments are used to know: What is the purpose ...
Code Conventions – Core Java :: Chapter 2
Code Conventions – Core Java :: Chapter 2
File Organization
File shouldn’t exceed 2000 lines of code.
File should be readable giving blank lines to separate sections.
News Facts
News Facts :: Java SE 7 & Java SE 8
In keeping with its commitment to advance Java faster and to support standardization activities through the Java Community Process (JCP), Oracle ...
Code Conventions – Core Java :: Chapter 1
Q: Why we Should use Java Conventions or Standards ?
Ans:
80% of the lifetime cost of a piece of software goes to maintenance.
Hardly any software is maintained for its whole ...
Oracle and Apple Announce OpenJDK Project for OSX
Good news all around! Oracle and Apple announced the OpenJDK project for Mac OS X. Apple will contribute most of the key components, tools and technology required for a Java SE 7 implementation ...
Latest Update : IBM to join OpenJDK
Latest Update : IBM to join OpenJDK
I’m very pleased that IBM and Oracle are going to work more closely together, and that we’re going to do so in the OpenJDK Community. IBM engineers ...
JDK 7 Update:
Fork/Join
New in JDK 7, the fork/join framework is an implementation of the ExecutorService interface that helps you take advantage of multiple processors. It is designed for work that ...
Recent Comments