Powershell打开窗口(来自Java.Runtime.exec)

时间:2014-08-27 15:09:03

标签: java powershell runtime exec

简单问题:

我想用来自java的一些命令调用powershell。但问题是没有窗口出现。我想要出现带有Powershell的窗口。

String[] str= {
"powershell.exe", "-NoExit", "-Command", "echo", "hallo"
}

[...]

Runtime.getRuntime().exec(str);

[...]

1 个答案:

答案 0 :(得分:1)

我能够这样做:

String[] str= { "cmd",  "/c", "start", "powershell.exe", "-NoExit", "-Command", "echo", "hallo" };