Powershell:使用 Process 对象捕获标准输出和错误
2022-09-01 19:52:30
我想从PowerShell启动一个Java程序,并将结果打印在控制台上。
我已经遵循了这个问题的说明:使用启动进程捕获标准和错误
但对我来说,这并不像我预期的那样有效。我做错了什么?
这是脚本:
$psi = New-object System.Diagnostics.ProcessStartInfo
$psi.CreateNoWindow = $true
$psi.UseShellExecute = $false
$psi.RedirectStandardOutput = $true
$psi.RedirectStandardError = $true
$psi.FileName = 'java.exe'
$psi.Arguments = @("-jar","tools\compiler.jar","--compilation_level", "ADVANCED_OPTIMIZATIONS", "--js", $BuildFile, "--js_output_file", $BuildMinFile)
$process = New-Object System.Diagnostics.Process
$process.StartInfo = $psi
$process.Start() | Out-Null
$process.WaitForExit()
$output = $process.StandardOutput.ReadToEnd()
$output
该变量始终为空(当然,控制台上不会打印任何内容)。$output