JAVA UNIT 1.1
JAVA UNIT 1.1
The use of these library classes will become evident when we start developing Java programs
Java Runtime Environment
The Java Runtime Environment (JRE) facilitates the execution of programs
developed in Java. It primarily comprises the following:
1. Java Virtual Machine (JVM): It is a program that interprets the intermediate
Java byte code and generates the desired output. It is because of byte code and JVM
concepts that programs written in Java are highly portable.
2. Runtime class libraries: These are a set of core class libraries that are required
for the execution of Java programs.
3. User interface toolkits: AWT and Swing are examples of toolkits that support
varied input methods for the users to interact with the application program.
4. Deployment technologies: JRE comprises the following key deployment
technologies:
(a) Java plug-in: Enables the execution of a Java applet on the browser.
(b) Java Web Start: Enables remote-deployment of an application. With Web
Start, users can launch an application directly from the Web browser without going
through the installation procedure.
Thank You