I'm testing a small java programa and I want to check compatability before I go further. I have two files in a package called EE. One is Viewer.java and the other is FileDisplay.java
I'm using Eclipse and have made a folder called META-INF with a text file inside with MANIFEST.MF with the contents
When I try to run this program I get an error and in console it says:
Exception in thread "main" java.lang.NoClassDefFoundError: Viewer
I read the package could be messing this up, help?!
I'm using Eclipse and have made a folder called META-INF with a text file inside with MANIFEST.MF with the contents
Code:
Manifest-Version: 1.2
Main-Class: Viewer
Specification-Title: "Extended Essay"
Created-By: 1.4 (Sun Microsystems Inc.)
When I try to run this program I get an error and in console it says:
Exception in thread "main" java.lang.NoClassDefFoundError: Viewer
I read the package could be messing this up, help?!