如何在JAVA中启动另外一个单独的程序?以及如何判断该程序运行完毕?(50分)

  • 主题发起人 主题发起人 hongsen
  • 开始时间 开始时间
import java.io.*;
public class ProcessDemo{
public static void main(String[] args) throws IOException, InterruptedException{
Process p = Runtime.getRuntime().exec("c://winnt//notepad.exe");
p.waitFor();
System.out.print("Ended.");
}
}
 
接受答案了.
 
后退
顶部