How to compile java over terminal, command line , Run java file

1. You need to check, java version with this command

$ java -version

 

2. Compile the code

$ javac …… …

 

3. Run The compiled

$ java -jar compiled.jar

 
[crayon-6684c42fe98e8696195538/]
 

 
[crayon-6684c42fe98ed406753667/]