简单问题:
我想用来自java的一些命令调用powershell。但问题是没有窗口出现。我想要出现带有Powershell的窗口。
String[] str= {
"powershell.exe", "-NoExit", "-Command", "echo", "hallo"
}
[...]
Runtime.getRuntime().exec(str);
[...]
答案 0 :(得分:1)
我能够这样做:
String[] str= { "cmd", "/c", "start", "powershell.exe", "-NoExit", "-Command", "echo", "hallo" };