我想通过JAVA API连接到Amazon EC2终端并执行sudo操作。我最终使用SSHJ库,因为我发现它的界面非常简单易用。好消息是我甚至可以通过这个库执行sudo操作。以下是一些示例代码:
//开始一个新会话 session = sshClient.startSession(); session.allocatePTY(“vt220”,80,24,0,0,Collections.emptyMap());
Command cmd = null;
String response = null;
// your allocating a new session there
try (Session session = sshClient.startSession()) {
cmd = session.exec("sudo service riak start");
response = IOUtils.readFully(cmd.getInputStream()).toString();
cmd.join(timeout, timeUnit);
} finally {
if (cmd != null)
cmd.close();
}
然而,我收到的回复有控制字符,并希望将它们转换为纯文本。
Starting riak: [60G[[0;32m OK [0;39
答案 0 :(得分:2)
经过大量的研究,我用" jansi"解决了这个问题。 java library(http://jansi.fusesource.org/)
所以现在我的更新代码看起来像这样:
Command cmd = null;
try (Session session = sshClient.startSession()) {
session.allocateDefaultPTY();
cmd = session.exec(command);
new StreamCopier(cmd.getInputStream(), AnsiConsole.out()).keepFlushing(true).copy();
cmd.join(timeout, timeUnit);
}finally{
if(cmd != null){
cmd.close();
}
}
而且,这很有效。