在后台使用java运行exe文件

时间:2017-06-17 14:37:59

标签: java

所以我需要在后台为我的应用程序运行一个exe文件。 我正在使用

try
{
    Runtime r = Runtime.getRuntime();
    Process p2 = r.exec("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"); //absolute or relative path
    r.exec("C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe", false);
} catch (IOException e) {          
    e.printStackTrace();
}  

但应用程序在前台运行

我该怎么做才能让它在后台运行。

编辑:我想在后台运行chrome(我是菜鸟)我不知道如何使用线程)

0 个答案:

没有答案