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

image_pdfimage_print

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