It is not recommended building Java projects manually. But if needed follow these steps to compile Java files.
First compile the file to run:
javac App.java
To run it:
java App
JAR files are ready to be used:
java -jar App.jar
Last updated 6 years ago