Search:

Type: Posts; User: Norm

Search: Search took 0.33 seconds.

  1. Re: cmd prompt exception "could not find or load main class test.java"

    What is in the file: test.java?
    Did the compiling of test.java create a test.class file? Use the dir command to see what is in the folder with the test.java file.
  2. Re: cmd prompt exception "could not find or load main class test.java"

    Did you use the javac command to compile the program:
    javac test.java
    if there is no error message, the above creates a test.class file
    To execute that code enter:
    java test

    If there are...
Results 1 to 2 of 2