在Ubuntu中使用C#写入子进程的stdin,可以通过使用Process类来实现。下面是一个示例代码:
using System;
using System.Diagnostics;
class Program
{
static void Main()
{
// 创建一个新的进程
Process process = new Process();
// 设置进程启动信息
process.StartInfo.FileName = "your_executable_file"; // 替换为你的可执行文件路径
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardInput = true;
// 启动进程
process.Start();
// 获取标准输入流
StreamWriter streamWriter = process.StandardInput;
// 写入数据到子进程的stdin
streamWriter.WriteLine("Your input data"); // 替换为你要写入的数据
// 关闭标准输入流
streamWriter.Close();
// 等待子进程退出
process.WaitForExit();
}
}
这段代码使用Process类来创建一个新的进程,并设置进程启动信息。其中,FileName
需要替换为你的可执行文件路径。通过设置RedirectStandardInput
为true,可以重定向标准输入流。然后,通过获取标准输入流的StreamWriter对象,可以将数据写入到子进程的stdin中。最后,等待子进程退出。
这种方法适用于在Ubuntu中使用C#编写的程序与其他可执行文件进行交互,可以将输入数据写入到子进程的stdin中。
领取专属 10元无门槛券
手把手带您无忧上云