ashozzy2 Posted August 22, 2006 Share Posted August 22, 2006 Hi all, Recetnly have been trying to learn Java and i started on a tutorial on sun. How ever i have a common problem and ive tried their solution and it doesnt work. I compile my application into the .class then when i type in: C:\java2\bin>java HelloWorldApp i get the no class defination file. I set the directory to the right place and it still says that. Also my class file for somereason has become a java file that when i try to alter it into open with standard binary it says corrupt file. Any ideas on what i should do? thanks Link to comment Share on other sites More sharing options...
Diminished2b Posted August 22, 2006 Share Posted August 22, 2006 First of all, it's probably best to add javac[Caution: Executable File] (The compiler) to your environmental variables. Second of all, your missing the extension. It outputs AppName.class You have to run it using java AppName.class Link to comment Share on other sites More sharing options...
ashozzy2 Posted August 23, 2006 Author Share Posted August 23, 2006 Typed in this: C:\java2\bin>java HelloWorldApp.class this came up: Exception in thread "Main" java.lang.NoClassDefFoundError: HelloWorldApp/class whats with that? Link to comment Share on other sites More sharing options...
skinnypeet Posted August 23, 2006 Share Posted August 23, 2006 i am taking a java class in high school so i can help you in about a school year lol [\url] Link to comment Share on other sites More sharing options...
ashozzy2 Posted August 24, 2006 Author Share Posted August 24, 2006 sorted the problem, java didnt recongnise the class directory, here is what i had to type C:\java2\bin> java -classpath . HelloWorldApp Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now