参考: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容器(网络环境)中运行。

最佳答案

您可以通过在会话开始时发送stty -echo命令来禁用命令回显。看一下this示例。

我建议将问题发布到ExpectIt user group上,而不要在Stackoverflow上发布,因为目前只有少数人在使用此库。

07-26 09:36