It had been long since i posted something about Java and thought of putting up a post describing Lifecycle of a Java Program.
The figure above explains the lifecycle of a Java Program. In words, the figure can be explained as:
- A Java program is written using either a Text Editor like Textpad or an IDE like Eclipse and is saved as a .java file. (Program.java)
- The .java file is then compiled using Java compiler and a .class file is obtained from it. (Program.class)
- The .class file is now portable and can be used to run this Java program in any platform.
- Class file (Program.class) is interpreted by the JVM installed on a particular platform. JVM is part of the JRE software.
Related Reads: Wat is the difference between JDK and JRE?
Cheers,
Vaibhav
Filed under: Eclipse, IDE, JRE, JVM, Java, Technology | Tagged: geeks, JRE, JVM, Java








[...] Java: Lifecycle of a Java Program By Vaibhav Pandey–>Technofriends Team A Java program is written using either a Text Editor like Textpad or an IDE like Eclipse and is saved as a .java file. (Program.java); The .java file is then compiled using Java compiler and a .class file is obtained from it. … Technofriends – http://technofriends.wordpress.com [...]
[...] Java: Lifecycle of a Java Program: This post talks about the Lifecycle of a Java program.It talks about the various stages a program goes through, right from the time its developed to the time its deployed. [...]