参考:ExpectIt : Trouble implementing a sudo -i
如何避免将Expectit的所有输出回显到我的java控制台?
这就是我开始使用SSH的方式:
public void connect( String host, String user, String password ) throws Exception {
this.host = host;
this.user = user;
this.password = password;
ssh = new SSHClient();
ssh.addHostKeyVerifier( new PromiscuousVerifier() );
ssh.connect(host, port);
ssh.authPassword(user, password);
session = ssh.startSession();
session.allocateDefaultPTY();
shell = session.startShell();
expect = new ExpectBuilder()
.withOutput(shell.getOutputStream())
.withInputs(shell.getInputStream(), shell.getErrorStream())
.withInputFilters(removeColors(), removeNonPrintable())
.withExceptionOnFailure()
.withTimeout(30, TimeUnit.SECONDS)
.build();
String result = expect.expect( Matchers.contains( PROMPT ) ).getInput();
consoleOut.add( result );
}
现在从Expect获取的所有结果将回显到控制台。我可以使用“结果”字符串,但它也会进入tomcat控制台(我确定我不会发送它)。
expect.sendLine( command );
String result = expect.expect( Matchers.contains( PROMPT ) ).getInput();
我正在Tomcat容器(Web环境)中运行。
答案 0 :(得分:1)
您可以通过在会话开始时发送stty -echo
命令来禁用命令echo。看看this示例。
我建议将问题发布到ExpectIt user group而不是Stackoverflow,因为目前只有少数人使用此库。