public class Example{public static void main(String args[]){ System.out.println("Hello Java ! ");}}以上是我敲的一个小java程序 在命令提示符窗口中修改目录到这个程序存在的目录中,用javac Example.java命令编译通过,生成了一个Example.class的文件。当我再在命令提示符窗口敲入 java Example时却运行不出结果。最后提示 Could not find the main class : Example,Program will exit.我不知道是怎么回事,请各位帮忙怎样能够用JDK顺利运行成功