阅读量:0
在C#中,你可以使用Process
类来执行外部程序并获取其输出。以下是一个简单的示例,展示了如何使用Process
类运行一个命令行程序(如ipconfig
),并读取其标准输出和错误输出:
using System; using System.Diagnostics; class Program { static void Main() { // 创建一个ProcessStartInfo实例,用于配置要运行的进程 ProcessStartInfo startInfo = new ProcessStartInfo { FileName = "ipconfig", // 要运行的命令行程序 RedirectStandardOutput = true, // 将标准输出重定向到进程的输出流 RedirectStandardError = true, // 将错误输出重定向到进程的输出流 UseShellExecute = false, // 不使用外壳执行程序 CreateNoWindow = true // 不创建新窗口 }; // 创建一个Process实例,用于运行进程 using (Process process = new Process { StartInfo = startInfo }) { // 开始运行进程 process.Start(); // 读取进程的标准输出 string output = process.StandardOutput.ReadToEnd(); Console.WriteLine("标准输出:"); Console.WriteLine(output); // 等待进程执行完成 process.WaitForExit(); // 读取进程的错误输出 string errorOutput = process.StandardError.ReadToEnd(); if (!string.IsNullOrEmpty(errorOutput)) { Console.WriteLine("错误输出:"); Console.WriteLine(errorOutput); } } } }
这个示例将运行ipconfig
命令行程序,并将其标准输出和错误输出重定向到应用程序的输出流。然后,它读取并打印这些输出。你可以根据需要修改FileName
属性以运行其他命令行程序。