Results 1 to 4 of 4
- 08-27-2012, 10:16 PM #1
Member
- Join Date
- Aug 2012
- Posts
- 6
- Rep Power
- 0
Error:Could Not Find or Load Main Class
I can clearly see the .class file in my java folder.
I type in java (FILE NAME) in the windows command prompt, I get the error: Could not find or load main class.
I got the .class file from typing in, javac (FILE NAME)
Please tell me what is wrong. If you need a copy of my code please tell me.Last edited by vickyv200; 08-27-2012 at 10:19 PM.
- 08-27-2012, 10:37 PM #2
Senior Member
- Join Date
- Oct 2010
- Location
- Germany
- Posts
- 780
- Rep Power
- 4
- 08-27-2012, 10:43 PM #3
Member
- Join Date
- Aug 2012
- Posts
- 6
- Rep Power
- 0
Re: Error:Could Not Find or Load Main Class
Yes, the file is a .java file, no I do not type .java. I am able to run the code when I use java -cp . FILENAME but not java. This applies to everything I have made, here is an example.
public class test{
public static void main(String[] args) {
System.out.println("test");
}
}
The full error message is Error:Could Not Find or Load Main Class testLast edited by vickyv200; 08-27-2012 at 10:47 PM.
- 08-29-2012, 01:10 AM #4
Re: Error:Could Not Find or Load Main Class
Well, your code sample works for me.
Some notes:
1. Make sure your class names start with a capital letter, as java code convention dictates
2. Java is case sensitive, so the name of the class and the actual java file must be the same:
andJava Code:public class Test{ //...
Test.java
These must match exactly. Once you compile with javac, you should get Test.class. Run this with:
java Test
You also must make sure that when you run the file, you are in the same folder (or the top level of your package tree if using packages!)
Similar Threads
-
Error: could not find or load main class
By sloppygecko in forum New To JavaReplies: 3Last Post: 08-08-2012, 03:11 PM -
Error: Could not find or load main class HelloWorld
By grejsimojs in forum New To JavaReplies: 8Last Post: 07-11-2012, 10:27 PM -
Error: Could not find or load main class
By Tybald in forum EclipseReplies: 5Last Post: 05-28-2012, 11:22 AM -
Please help! Cannot find or load main class error
By BenH in forum New To JavaReplies: 3Last Post: 12-09-2011, 03:51 AM -
Error: Could not find or load main class
By ITSlave in forum New To JavaReplies: 4Last Post: 09-15-2011, 09:47 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks