ReactJS is an open-source, component based front end library responsible only for the view layer of the application. It is […]
Tag: java tutorials
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 […]
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 […]
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 Struts?
Struts is a framework that provides the use of the Model-View-Controller architecture for designing large-scale applications. it is a project […]
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 is JSP?
JSP Java Server Page (JSP) technology allow web developers and designers to rapidly develop and easily maintain, information-rich, dynamic web […]