博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 读取控制台的Console.Write
阅读量:5064 次
发布时间:2019-06-12

本文共 1325 字,大约阅读时间需要 4 分钟。

一个程序去调用另一个xxx.exe的时候,需要记录下这个exe里面的console.write的输出

public static string InvokeExcute(string Command)        {            Command = Command.Trim().TrimEnd('&') + "&exit";            using (Process p = new Process())            {                p.StartInfo.FileName = "cmd.exe";                p.StartInfo.UseShellExecute = false;        //是否使用操作系统shell启动                p.StartInfo.RedirectStandardInput = true;   //接受来自调用程序的输入信息                p.StartInfo.RedirectStandardOutput = true;  //由调用程序获取输出信息                p.StartInfo.RedirectStandardError = true;   //重定向标准错误输出                p.StartInfo.CreateNoWindow = false;          //不显示程序窗口                p.Start();//启动程序                          //向cmd窗口写入命令                p.StandardInput.WriteLine(Command);                p.StandardInput.AutoFlush = true;                //获取cmd窗口的输出信息                StreamReader reader = p.StandardOutput;//截取输出流                StreamReader error = p.StandardError;//截取错误信息                string str = reader.ReadToEnd() + error.ReadToEnd();                p.WaitForExit();//等待程序执行完退出进程                p.Close();                return str;            }        }

调用

var str = InvokeExcute(@"E:\Code\Xamarin\test1\test1\bin\Debug\test1.exe");            Console.WriteLine(str);

 

转载于:https://www.cnblogs.com/feimaoicoding/p/10878740.html

你可能感兴趣的文章
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
iOS开发UI篇—Quartz2D使用(绘制基本图形)
查看>>
docker固定IP地址重启不变
查看>>
桌面图标修复||桌面图标不正常
查看>>
JavaScript基础(四)关于对象及JSON
查看>>
JAVA面试常见问题之Redis篇
查看>>
jdk1.8 api 下载
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>
雨林木风 GHOST_XP SP3 快速装机版YN12.08
查看>>
java对象的深浅克隆
查看>>
数据结构3——浅谈zkw线段树
查看>>
Introduction to my galaxy engine 2: Depth of field
查看>>
Python 3.X 练习集100题 05
查看>>
设计器 和后台代码的转换 快捷键
查看>>
Monkey测试结果分析
查看>>
浅谈C++底层机制
查看>>
STL——配接器、常用算法使用
查看>>
第9课 uart
查看>>