我正在编写一个小应用程序来通过 SSH 连接到服务器列表并执行一些命令。我正在使用jcabi-ssh。当我运行程序时,jcabi-ssh 输出到控制台,其中包含以下行:
[main] WARN com.jcabi.ssh.SSH - Permanently added '192.168.4.2' (RSA) to the list of known hosts.
[main] INFO com.jcabi.ssh.Execution$Default - $ ping -c 1 google.com
我的代码片段如下:
Shell shell = new SSHByPassword(targetServer.toString(), Integer.parseInt(port), username.toString(), password.toString());
exitCode=shell.exec("ping -c 1 google.com",stdin,stdout,stderr);
我想隐藏控制台输出或将其重定向到文件。我查看了源代码,但似乎我无法通过方法调用来做到这一点。有没有办法做我想做的事?
谢谢!