我正在为闭包编译器编写一个包装类,并且通过process.StandardOutput.ReadToEnd()
编写以下代码得到空字符串。
public class ClosureCompiler
{
ProcessStartInfo psi = new ProcessStartInfo();
string _commandpath;
public ClosureCompiler(string commandpath)
{
_commandpath = commandpath;
psi.FileName = "java.exe";
psi.UseShellExecute = false;
psi.RedirectStandardOutput = true;
}
public string Compile(string sourcefile)
{
psi.Arguments = " -jar " + _commandpath + " --js " + sourcefile; // +" --js_output_file " + destinationfile + "";
var process = Process.Start(psi);
process.WaitForExit();
return process.StandardOutput.ReadToEnd();
}
}
但是当我从标准输出上显示的命令行输出运行命令时。