我知道这个问题被问了很多,但我似乎找不到一个好的开始方式。
我一直在使用sharpssh,但它是为控制台应用程序制作的。因此,当我尝试创建一个 winforms 应用程序时,我无法让它按照我想要的方式运行。
在我的表单中,我有: 一个显示输出的文本框 用户应该在其中编写命令的文本框。
我卡在 readline() 上,我需要暂停应用程序,直到用户按下回车键,然后发送插入文本框中的命令。我不知道如何将应用程序转换为 winform 应用程序。
所以问题是如何去做这件事? - 我应该使用一个在初始化应用程序时启动的进程,以及一个在收到输出并需要输入时启动的进程吗?并使用第二个进程收集输入监听事件输入在文本框中按下并启动另一个进程以发送输入并再次等待输出?
如果有的话,有一个关于如何解决它的例子吗?
这是代码?
public Form1()
{
InitializeComponent();
txthost.Text = "XXX";
txtuser.Text = "XXXXX";
txtpass.Text = "XXXXX";
string pattern = "sdf:";
mPattern = pattern;
this.txtInput.KeyPress += new System.Windows.Forms.KeyPressEventHandler(checkforenter);
}
public void button1_Click(object sender, EventArgs e)
{
try
{
mShell = new SshShell(Host, User);
mShell.Password = Pass;
//WRITING USER MESSAGE
txtOutput.AppendText("Connecting...");
mShell.Connect();
txtOutput.AppendText("OK");
//txtOutput.AppendText("Enter a pattern to expect in response [e.g. '#', '$', C:\\\\.*>, etc...]: ");
//Stop for user input
mShell.ExpectPattern = mPattern;
mShell.RemoveTerminalEmulationCharacters = true;
_writer = new TextBoxStreamWriter(txtOutput);
Console.SetOut(_writer);
StringReader reader = new StringReader(txtInput.Text);
while (mShell.ShellOpened)
{
txtOutput.AppendText("\r\n" + "TERMINAL MODE ENGAGED");
txtOutput.AppendText(mShell.Expect( pattern ));
txtInput.Text = Console.ReadLine();
Console.ReadLine();
Console.WriteLine(Environment.NewLine);
txtOutput.AppendText(mShell.Expect(pattern));
MessageBox.Show("innan enter 2");
Console.WriteLine(Environment.NewLine);
txtOutput.AppendText(mShell.Expect(("(continue)")));
MessageBox.Show("efter enter 2");
Console.WriteLine(Environment.NewLine);
//Data from termninal --> Append to text
string output = mShell.Expect(Pattern);
txtOutput.AppendText(output);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}