connect runtime to terminal java code example
Example 1: run java from terminal
//Run this line to compile
javac programName.java
//Run this line to run
java programName
Example 2: how to run a java file in terminal
javac FirstJavaProgram.java
//Run this line to compile
javac programName.java
//Run this line to run
java programName
javac FirstJavaProgram.java