我想在后台运行指定的文件(.exes)...
File file = new File ("C:\\Documents and Settings\\INTEL\\My Documents\\NetBeansProjects\\demo\\calc.exe");
Desktop.getDesktop().open(file);
如果我使用运行时的东西
答案 0 :(得分:0)
在单独的进程中执行指定的字符串命令。
Process process = Runtime.getRuntime().exec("C:\\Documents and Settings\\INTEL\\My Documents\\NetBeansProjects\\demo\\calc.exe");
答案 1 :(得分:0)
您可以在另一个线程中执行您的流程
Thread thread = new Thread(){
public void run(){
try {
Runtime.getRuntime().exec("...");
} catch (Exception e) { ... }
}
}
thread.start();