当前位置: 代码迷 >> J2EE >> java调用dos命令解决办法
  详细解决方案

java调用dos命令解决办法

热度:136   发布时间:2016-04-21 23:46:37.0
java调用dos命令
import java.io.IOException;


public class Te {

/**
 * @param args
 * @throws IOException 
 * @throws IOException 
 * @throws InterruptedException 
 */
public static void main(String[] args) throws IOException, InterruptedException {
// TODO Auto-generated method stub
Process process = Runtime.getRuntime().exec("cmd.exe  dir"); 
process.waitFor( );
}
}

我这个程序为什么运行到process.waitFor();就会卡住,如何解决

------解决方案--------------------
  Process process = Runtime.getRuntime().exec("cmd.exe /c start dir");
  相关解决方案