我可以分叉我正在启动的进程的输出流吗?

时间:2012-03-01 22:26:31

标签: .net

  

可能重复:
  Redirect but also display process output stream

 var startInfo=new ProcessStartInfo(java, serverMemoryArguments + " -jar \"" + latestBukkit.info.Name + "\"") 
        { WorkingDirectory = latestBukkit.info.DirectoryName ,

        RedirectStandardError=true,
       // RedirectStandardOutput=true,
        UseShellExecute = false,
         //CreateNoWindow=true,
         ErrorDialog = true,
          ErrorDialogParentHandle=this.Handle,

        };

我想分叉输出,而不仅仅是重定向...我想听,并让它显示在普通窗口中。

可以吗?

0 个答案:

没有答案