7

这是我的问题。我有一个必须在 TTY 中运行的程序,cygwin 提供了这个 TTY。当我重定向 stdIn 时,程序失败,因为它没有 TTY。我不能修改这个程序,需要一些自动化的方法。

如何获取 cmd.exe 窗口并向其发送数据并使其认为用户正在键入它?

我正在使用 C#,我相信有一种方法可以使用 java.awt.Robot 来做到这一点,但出于其他原因我必须使用 C#。

4

4 回答 4

5

我已经弄清楚如何将输入发送到控制台。我使用了 Jon Skeet 所说的。我不是 100% 确定这是实现这一点的正确方法。

如果有任何意见可以使这更好,我很乐意在这里。我这样做只是为了看看我能不能弄清楚。

这是我盯着的等待用户输入的程序

class Program
{
    static void Main(string[] args)
    {
        // This is needed to wait for the other process to wire up.
        System.Threading.Thread.Sleep(2000);

        Console.WriteLine("Enter Pharse: ");

        string pharse = Console.ReadLine();

        Console.WriteLine("The password is '{0}'", pharse);


        Console.WriteLine("Press any key to exit. . .");
        string lastLine = Console.ReadLine();

        Console.WriteLine("Last Line is: '{0}'", lastLine);
    }
}

这是控制台应用程序写入另一个

class Program
{
    static void Main(string[] args)
    {
        // Find the path of the Console to start
        string readFilePath = System.IO.Path.GetFullPath(@"..\..\..\ReadingConsole\bin\Debug\ReadingConsole.exe");

        ProcessStartInfo startInfo = new ProcessStartInfo(readFilePath);

        startInfo.RedirectStandardOutput = true;
        startInfo.RedirectStandardInput = true;
        startInfo.WindowStyle = ProcessWindowStyle.Hidden;
        startInfo.CreateNoWindow = true;
        startInfo.UseShellExecute = false;

        Process readProcess = new Process();
        readProcess.StartInfo = startInfo;

        // This is the key to send data to the server that I found
        readProcess.OutputDataReceived += new DataReceivedEventHandler(readProcess_OutputDataReceived);

        // Start the process
        readProcess.Start();

        readProcess.BeginOutputReadLine();

        // Wait for other process to spin up
        System.Threading.Thread.Sleep(5000);

        // Send Hello World
        readProcess.StandardInput.WriteLine("Hello World");

        readProcess.StandardInput.WriteLine("Exit");

        readProcess.WaitForExit();
    }

    static void readProcess_OutputDataReceived(object sender, DataReceivedEventArgs e)
    {
        // Write what was sent in the event
        Console.WriteLine("Data Recieved at {1}: {0}", e.Data, DateTime.UtcNow.Ticks);
    }
}
于 2009-01-16T21:00:45.213 回答
1

您可以在代码中启动程序(或 cygwin),使用ProcessStartInfo.RedirectStandardInput(和输出/错误)来控制数据流吗?

于 2009-01-16T17:14:21.363 回答
1

这听起来像是SendKeys(). 它不是 C#,而是 VBScript,但尽管如此 - 您要求某种自动化方法:

Set Shell = CreateObject("WScript.Shell")

Shell.Run "cmd.exe /k title RemoteControlShell"
WScript.Sleep 250

Shell.AppActivate "RemoteControlShell"
WScript.Sleep 250

Shell.SendKeys "dir{ENTER}"
于 2009-01-16T17:35:10.590 回答
0

我前段时间遇到过类似的问题,cygwin 应该将一些有用的信息(确切的 cygwin 函数、错误文本和 WINAPI 错误代码)写入错误流,你应该将它重定向到某个地方并阅读它所写的内容。

于 2009-01-16T17:46:19.833 回答