所以我需要在后台为我的应用程序运行一个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(我是菜鸟)我不知道如何使用线程)