Java Tools & Files

Common file types and tools used in Java development.

We'll cover the following...

Question # 1

What files do we write Java code in?

Java code is written in files with the extension .java

Question # 2

What are .class files?

or

What is Java bytecode?

The java compiler compiles the .java files into .class files. The .class files contain what is known as the java bytecode. Then the bytecode can be run by the JVM. Java bytecode is the instruction set of the Java virtual machine.

widget

Question # 3

What are .jar files?

A JAR ...