主题:请教exec调用cmd的问题
import java.io.*; public class B { public static void main(String args[]) { try{ Runtime.getRuntime().exec("cmd.exe /c javac C:\\Documents and Settings\\Administrator\\桌面\temp\\A.java");}catch(IOException e1){} try{Thread.sleep(5000);}catch(InterruptedException e){} try{Runtime.getRuntime().exec("cmd.exe /c java C:\\Documents and Settings\\Administrator\\桌面\\temp\\A");}catch(IOException e2){}; System.out.println("111"); } } A.java手动可以正常编译后运行,为什么将B编译运行后,对A.java没有作用,既不能编译也不能运行