Looking for help turning Java into executable program

Hi guys,
I’m having trouble turning my java program into a program I can executive on Macs (I’m developing on Windows 7). Here’s the source code, http://pastebin.com/LiZnSRmT. The JARs I’ve created have not run at all on my Mac, and didn’t function properly on my other PC.

Here’s the text file required for the program to run. http://pastebin.com/a59X0N0A

Any ideas?

Make sure JRE is installed on the machine. Java code runs by being passed to the JRE which runs it own abstraction layer and compiles your source into byte code.

use the javac command on the .java file.
then you could possibly write a little c code that executed the JVM with an argument as the .java file and that would be your .exe file.