Setting PATH Environment

Right click on My Computer and select properties Click on Advanced system settings Click on Advanced tab and click on Environment Variables Under system properties, check if there is any variable named PATH, if not create a new variable Enter variable name as PATH and variable value as java installed bin directory path in your […]

Share this article on

First Program In Java

Before developing first Java program , we need to have below things set. 1) JDK Installation Download and install the JDK using below link Java download link 2) Set the jdk path Now write the Java program either in notepad or in eclipse IDE. class FirstJavaProgram{       public static void main(String args[]){   […]

Share this article on
< Previous