Developing Your Java Programs in a Command Line Environment


Java can be compiled and run on most platforms. Depending on your situation you can choose one or more of the following options:

The most primitive (and simplest) development environment under Windows is to use one or more Notepad and Command Prompt windows. Edit your code using Notepad then compile (using javac) and execute (using java) using a Command Prompt window.