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-6684c65182c9a992100890/]
 

 
[crayon-6684c65182ca3155219789/]