I was writing a simple program using a Java application (not application that has projects, but application within a project; .java) that has a single frame. Both o
Perhaps the most beginner-friendly way to compile a JAR from your Java code is to use an IDE (integrated development environment; essentially just user-friendly software for development) like Netbeans or Eclipse.
You can always do this all very easily with the command line. Make sure that you are in the same directory as the files targeted before executing a command such as this:
javac YourApp.java
jar -cf YourJar.jar YourApp.class
...changing "YourApp" and "YourJar" to the proper names of your files, respectively.