Java: Lifecycle of a Java Program
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 below 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: What is the difference between JDK and JRE?
You can follow me on Twitter at http://twitter.com/vaibhav1981
Do stay tuned to Technofriends for more, one of the best ways of doing so is by subscribing to our feeds. You can subscribe to Technofriends feed by clicking here.
Related posts:
- Java: Lets revisit the past
- How to get free available memory in Java program
- Java Roundup
- [Java] Program For Printing Limits of Primitive Data Types
- [Java] Reading a Webpage through URL

[...] 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. [...]
i am in java applet