@applejack @hj @lanodan It creates a class file of the Java file. All the imported files it uses are also compiled to class files. To compile to a JAR (Java executable) file you enter:
jar -cf <insert output filename here>.jar <insert class file here>.class
@applejack @hj @lanodan
javac <insert java filename here>.java