I have a directory structure like this:
./
+-- myClass
| +-- MainClass.class
|
+-- dummy
+-- DummyClass.class
MainClass contains the public static void main(String args[]) and imports dummy.DummyClass.
I compile with a simple command like javac myClass/MainClass.java dummy/DummyClass.java and all is fine. But when I try to execute it from ./ using java myClass.MainClass I get the "cannot find main class" error.
If I change the classpath with the -cp option then MainClass can't find DummyClass anymore.
Any hints?
Thank you very much ;)