Executable Jars- Error: Main Class not found
I am pretty new to java and I cant seem to get my jar file to execute when I double click it. It gives an error that reads "Could not find the main class" and I'm not sure where the problem resides. My manifest file reads
Main-Class: Calculator
Which, of course, is my main class. I get the same sort of error when I type "java -jar Calculator.jar" (which is the jar file I have created) at the dos prompt. In jbuilder the program runs fine and if I type java packagename.classname at the dos promt the program runs fine. Can anybody help me here?

