Here you are with your computer and you can’t wait to start writing Java applications. But first, you need to […]
Tag: java programming
Variable`s in java
Before you use a variable in java, you must declare it, specifying its data type. The int types is only […]
Java`s Reserved Words
when you are writing java code, you should know that java reserves certain words for itself as part of the […]
Commenting in your java code
Java supports three types of comments, two of which are taken from C++. you can surround a comment of any […]
System.out.println(“………..”)
The main method has one line of code in it: public class name { public static void main(String[] args) System.out.println(“linux”);} […]
public static void main(String[] args)
Here`s the next line of code. public class abc { public static void main(String[] args) {……}} Whats happening here is […]
Java Program First Line.
public class abc {……} This line indicates that we are creating a new java class named abc. After we translate […]
What is J2EE?
J2EE (Java 2 Platform, Enterprise Edition) is a platform-independent, java-centric environment from sun for developing, building and online deployment of […]
what`s new in java SE6 ?
java SE6 The new java SE 6 comes with lots of improvements ti the existing packages with number of new […]
The Applet Class in Java
Each applet is an augmentation of the java.applet.applet class. The base Applet class gives techniques that a determined Applet class […]