我在使用 JSCH 并将命令发送到 shell 时遇到了一些问题。
我有一个控制台 GUI 窗口设置,并且 system.out 已被重定向到 TextArea 并且工作正常,但是我无法输入任何命令
这是会话的连接代码
this.channel=session.openChannel("shell");
PipedInputStream pip = new PipedInputStream(40);
this.channel.setInputStream(pip);
PipedOutputStream pop = new PipedOutputStream(pip);
PrintStream print = new PrintStream(pop);
this.channel.setOutputStream(System.out);
print.println("ls");
this.channel.connect(3*1000);
这工作正常,并运行 ls 命令并显示输出,但是如果我现在想运行更多命令,这些命令不起作用。
我有一个文本框设置和一个“发送”按钮,可以将这些命令发送到下面编码的服务器。
String send = jServerInput.getText();
try {
PipedInputStream pip = new PipedInputStream(40);
//this.channel.setInputStream(pip);
PipedOutputStream pop = new PipedOutputStream(pip);
PrintStream print = new PrintStream(pop);
//this.channel.setOutputStream(System.out);
//System.out.println(send);
print.println(send);
} catch (IOException iOException) {
}
然而,点击“发送”按钮什么也没做。我显然错过了一些简单的东西