1

在我的项目(MVC 3)中,我想使用以下代码运行外部控制台应用程序:

   string returnvalue = string.Empty;

   ProcessStartInfo info = new ProcessStartInfo("C:\\someapp.exe");
   info.UseShellExecute = false;
   info.Arguments = "some params";
   info.RedirectStandardInput = true;
   info.RedirectStandardOutput = true;
   info.CreateNoWindow = true;

   using (Process process = Process.Start(info))
   {
      StreamReader sr = process.StandardOutput;
      returnvalue = sr.ReadToEnd();
   }

但是我在 中得到一个空字符串,returnvalue该程序因此创建了一个文件,但没有创建任何文件。也许 tahtProcess没有被执行?

4

3 回答 3

2

如果我没记错的话,要同时读取标准错误和标准输出,您必须使用异步回调:

var outputText = new StringBuilder();
var errorText = new StringBuilder();
string returnvalue;

using (var process = Process.Start(new ProcessStartInfo(
    "C:\\someapp.exe",
    "some params")
    {
        CreateNoWindow = true,
        ErrorDialog = false,
        RedirectStandardError = true,
        RedirectStandardOutput = true,
        UseShellExecute = false
    }))
{
    process.OutputDataReceived += (sendingProcess, outLine) =>
        outputText.AppendLine(outLine.Data);

    process.ErrorDataReceived += (sendingProcess, errorLine) =>
        errorText.AppendLine(errorLine.Data);

    process.BeginOutputReadLine();
    process.BeginErrorReadLine();
    process.WaitForExit();
    returnvalue = outputText.ToString() + Environment.NewLine + errorText.ToString();
}
于 2013-04-04T16:38:52.053 回答
0

您必须等待外部程序完成,否则在您想要读取时甚至不会生成您想要读取的输出。

using (Process process = Process.Start(info))
{
  if(process.WaitForExit(myTimeOutInMilliseconds))
  {
  StreamReader sr = process.StandardOutput;
  returnvalue = sr.ReadToEnd();
  }
}
于 2013-04-04T15:54:28.180 回答
0

正如 TimothyP 在评论中所说,设置后RedirectStandardError = true,然后通过process.StandardError.ReadToEnd()我得到错误消息内容

于 2013-04-04T15:54:36.257 回答