Programming Tutorials

Getting Started with Java

By: Linda Ng in Java Tutorials on 2023-04-23  

If you are a beginner please read chapter 1 (History of Java) and chapter 2 (What is Java?) before proceeding. 

If you are familiar with C then Java should be very familiar to you in terms of syntax. If you are a C++ programmer the Java will be easier still since Java is also purely an Object Oriented Programming without some of the features like Pointers in C++.

To start programming your first Java program, you need to have some pre-requisites installed on your computer. As with any other programming language, you first need to install the SDK (Software Developer Kit) in this case it is JDK (Java Developers Kit).  Now choosing which JDK to download maybe a little tricky if you are new to Java. So it will be advisable to read the How Java is Organised? before you proceed.

You have two options to get started with Java.

1. Manual

  • If you want to do it manually, you will need to download a J2SE from Sun website and install on your computer. (The J2SE has many versions and it is better to check at the Oracle website to get the latest JDK.)
  • The J2SE download is usually an executable file which will install automatically like any windows software. Or you can use apt-get or yum to install java in linux. (eg.  sudo apt install default-jdk )
  • Once the installation is successful, open a command line (DOS Window) and type 'Java' and 'Enter'. (If you see 'Bad command' then probably your PATH settings are wrong. In which add the installation path to the PATH variable from your 'computer properties' environment variables section.)
  • Open a Notepad, write your first sample program (you will find many here) and save it as .java file (the name of the file should be same as the name of the CLASS in the program)
  • from the command window, change current directory to where you saved your .java file and compile the program ( Use 'javac' command followed by the name of the file to compile)
  • Once it is compiled a .class file will be created in the same folder. Then run the program using 'Java' command (Use 'Java' command followed by the name of the class)

2. Automated 






Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in Java )

Latest Articles (in Java)