>我有两个控制台应用程序,第一个是"Process1",它编译为exe,无法更改其中的代码。第二个是"仪表"控制台应用程序,用于计算Process1的启动时间。我想现在是时候当 HelloWorld 在控制台窗口中打印时。
{我的进程1}: 我将其编译成一个名为process1.exe的程序集。
Class Process1{
static void Main(String[] args]){
Console.Write("Hello word");
}
}
我的第二个应用程序是一个控制台应用程序,它将 process1.exe 作为进程调用,我想知道什么时候进程 1 已"就绪",假设是打印"你好词"的时间。我读到了 Process.OutputDataReceived 事件,但是该事件在调试时永远不会触发,里面的代码永远不会打印。
//{仪表应用}
public Class Student{
String ID;
String Name;
}
public Class Program{
public static void Main(String[] args){
p.StartInfo = new ProcessStartInfo("process1.exe")
{
UseShellExecute = false,
//Add this line
RedirectStandardOutput = true,
};
Student st = new Student();
p.OutputDataReceived += P_OutputDataReceived;
p.Start();
//Add this line
p.BeginOutputReadLine();
p.WaitForExit();
}
private static void P_OutputDataReceived(object sender, DataReceivedEventArgs e)
{
string output = e.Data;
Console.WriteLine("Process1 ready at: "+DateTime.Now);
Console.WriteLine("Data is: " + output);
}
}
我的评论总结道:
对Main()
方法的这种修改应该可以做到这一点。
public static void Main(String[] args){
p.StartInfo = new ProcessStartInfo("process1.exe")
{
UseShellExecute = false,
RedirectStandardOutput = true
};
Student st = new Student();
p.OutputDataReceived += P_OutputDataReceived;
p.Start();
p.BeginOutputReadLine();
p.WaitForExit();
}