这个程序什么意思,怎么运行不了。求大神们帮助
import java.io.*;
public class K {
	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO 自动生成方法存根
     try{
    	 Runtime ce=Runtime.getRuntime();
    	 ce.exec("javac D.java");
    	 ce.exec("java D");
    	 File file=new File("C;/windows","Notepad.exe");
    	 ce.exec(file.getAbsolutePath());
     }
     catch(Exception e){
    	 System.out.println(e);
     }
	}
}
------最佳解决方案--------------------这个程序企图自动编译并执行 D.java
然后再启动 Notepad.exe(记事本)
不过有符号错误,另外完全没处理输出信息,而且依赖于D.java这个程序。
所以要慢慢调试了。
------其他解决方案--------------------
大神啊,我滴疑问啊。。