私はクロージャ コンパイラのラッパー クラスを作成していますが、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();
}
}
しかし、標準出力に表示されるコマンドライン出力からコマンドを実行しているとき。