Here`s the next line of code. public class abc { public static void main(String[] args) {……}} Whats happening here is […]
Tag: java program
Java Program First Line.
public class abc {……} This line indicates that we are creating a new java class named abc. After we translate […]
Writing Java code: Creating an application
public class app { public static void main(String[] args) { System.out.println(“Hello world”); } } If you are new to Java, […]
What is JSP?
JSP Java Server Page (JSP) technology allow web developers and designers to rapidly develop and easily maintain, information-rich, dynamic web […]
What is J2ME?
J2ME J2ME (java 2 mobile edition), a java-based runtime platform created by sun microsystems, allows java application to run on […]
Life Cycle of an Applet IN JAVA
The creation of any applet requires the implementation of four methods of the Applet class. These methods have been discussed […]
Interfaces and Packages in Java
Abstract methods when brought together form a package. A class actualizes an interface, consequently inheriting the interface’s abstract methods. An […]
Creating An Exception in Java
You can make your own exemptions in Java. Remember the accompanying focuses when composing your classes for exceptions: All exemptions […]
File Handling in Java
All the classes that you may require on a day to day I/O programming basis are contained in the package […]
The Arrays Class in Java
The java.util.arrays class contains different functions for sorting and seeking values from array, looking at arrays, and filling components into […]