当前位置: 代码迷 >> Java相关 >> 请教关于exec调用cmd的问题
  详细解决方案

请教关于exec调用cmd的问题

热度:323   发布时间:2012-08-16 07:22:56.0
请教关于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没有作用,既不能编译也不能运行
搜索更多相关的解决方案: java  void  Documents  public  import  

----------------解决方案--------------------------------------------------------
  相关解决方案