使用 .net 托管代码屏幕抓取命令窗口
我正在 dot net 中编写一个程序,它将使用框架 2.0 的 Process 对象执行脚本和命令行程序。 我希望能够访问程序中进程的屏幕缓冲区。 我已经对此进行了调查,看来我需要访问控制台标准输出和标准错误缓冲区。 有人知道这是如何使用托管代码来完成的吗?
我想我需要使用附加到任务的 Windows 控制台的 AttachConsole 和 ReadConsoleOutput 以便从控制台屏幕读取字符和属性数据块。 我需要做的是托管代码。
I am writing a program in dot net that will execute scripts and command line programs using the framework 2.0's Process object. I want to be able to access the screen buffers of the process in my program. I've investigated this and it appears that I need to access console stdout and stderr buffers. Anyone know how this is accomplished using managed code?
I think I need to use the AttachConsole and the ReadConsoleOutput of the windows console attached to the task in order to read a block of character and attribute data from the console screen. I need to do this is managed code.
See http://msdn.microsoft.com/en-us/library/ms684965(VS.85).aspx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 System.Diagnostics.Process 类的 StandardError、StandardOutput 和 StandardInput 属性来完成此操作。
MSDN 有一个很好的 重定向标准输入和输出的示例< /a> 一个进程。
请注意,您只能重定向您启动的进程的输出。 您未启动的外部进程无法在事后重定向其标准输出。
另请注意,要使用 StandardInput,必须将 ProcessStartInfo.UseShellExecute 设置为 false,并且必须将 ProcessStartInfo.RedirectStandardInput 设置为 true。 否则,写入 StandardInput 流会引发异常。
You can accomplish this using the StandardError, StandardOutput, and StandardInput properties on the System.Diagnostics.Process class.
MSDN has a nice example of redirecting standard in and out of a process.
Note that you can only redirect the output of processes that you started. External processes that you didn't launch can't have their stdout redirected after the fact.
Also note that to use StandardInput, you must set ProcessStartInfo.UseShellExecute to false, and you must set ProcessStartInfo.RedirectStandardInput to true. Otherwise, writing to the StandardInput stream throws an exception.