0

指定したファイル (.exe) をバックグラウンドで実行したい...

File file = new File ("C:\\Documents and Settings\\INTEL\\My Documents\\NetBeansProjects\\demo\\calc.exe");  
Desktop.getDesktop().open(file);  

ランタイムのものを使用するとどうなりますか

4

2 に答える 2

0

別のスレッドでプロセスを実行できます

Thread thread = new Thread(){
  public void run(){
    try {
      Runtime.getRuntime().exec("...");
    } catch (Exception e) { ... }
  }
}
thread.start();
于 2013-07-23T09:14:59.453 に答える