Java Programming Environment
Java Programming Environment
- Compiling Java Programs
- The javac program is the Java compiler.
- ex) javac Welcome.java
- It compiles the file Welcome.java into the file Welcome.class.
- The Welcome.class file contains the byte-codes.
- Running Java Byte-Codes
- The java program is the Java interpreter.
- ex) java Welcome
- It interprets the byte-codes.
- Editing Java Source Programs
- Any text editor should work fine.
- We use the Java customized version of WinEdit editor.
Notes: