Strange problem running J2SE 1.4.2_05 SDK

Hi!

I am Finnish computer teacher in highschool. Last summer we had new computers in our class and SDK doesn' t run any class files anymore. For example following code:

public class Moi{

public static void main(String[ ] arguments){

System.out.println("Moi");

}

}

javac Moi.java

Everything goes very well. Compiler doesn' t complain anything and it does the job. But

java Moi

gives error statement like "exception in thread main ... ClassNotFound or so on."

I have given correct path-statement in autoexec.bat file because compiler handles the job. We have also installed directx 9 to our system and we are using windows 98 as our operating system.

sami

[735 byte] By [Sami100] at [2007-9-30 18:07:36]
# 1
Post your launch commandsWhat is your classpath?
Martin3 at 2007-7-6 18:38:35 > top of Java-index,Administration Tools,Sun Connection...
# 2
Hi!After I compiled the file succesfully. I gave launch command like thisc:\mydocs\java MoiI have not used any classpath variable.
Sami100 at 2007-7-6 18:38:35 > top of Java-index,Administration Tools,Sun Connection...
# 3
Tryc:\mydocs\java -cp . Moi
Martin3 at 2007-7-6 18:38:35 > top of Java-index,Administration Tools,Sun Connection...