File extensions

  • .java: source file.
  • .class: byte-code file.
    • Intermediate code ready to be consumed by jvm

Jar

  • .jar: Java archive, zipped up file.
    • Aggregates multiple .class files and their related metadata, configuration, images etc. into one file.
    • May contain a manifest file.
Link to original