Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 java 执行 powershell cmdlet。有什么办法可以实现吗?我尝试使用 Runtime 和 exec 命令,但输出窗口介于两者之间。
使用较新的 ProcessBuilder 类更容易。Runtime.exec 有几个你需要记住的陷阱,以便让事情正常工作。例如,您需要确保正确处理流程的输入和输出流。
我建议你在谷歌上找到一个使用 ProcessBuilder 的例子。