Java Architecture.

java dev.to

Java architecture is designed to make programs platform-independent It's run anywhere. Source code -> Byte code -> JVM -> Machine code. Java Source Code- Written by developers in .java files Example: Hello.java Java Compiler - Converts source code into bytecode Output file: .class Bytecode - Intermediate code generated after compilation Can run on any system with JVM. Java Virtual Machine (JVM) - Core of Java architecture Converts bytecode into machine code. Java Runtime Environment (JRE)

Read Full Tutorial open_in_new
arrow_back Back to Tutorials