我无法使用JSch运行top命令。请参阅以下代码:
Session session = null;
ChannelShell channel = null;
PipedInputStream pipeIn = null;
PipedOutputStream pipeOut = null;
String response = "";
try {
session = getSession(hostIp, userName, password);
channel = (ChannelShell)session.openChannel( "shell" );
pipeIn = new PipedInputStream();
pipeOut = new PipedOutputStream( pipeIn );
channel.setInputStream(pipeIn);
channel.setOutputStream(System.out, true);
channel.connect(3*1000);
pipeOut.write(command.getBytes());
Thread.sleep(3*1000);
} catch (Exception e) {
throw e;
} finally {
if (pipeIn != null) pipeIn.close();
if (pipeOut != null) pipeOut.close();
closeResources(session, channel);
}
由于top是一个交互式命令,我使用了ChannelShell。上面的代码显示了输出到top命令,但它没有显示任何响应。
答案 0 :(得分:1)
您没有显示您分配给element * \main\0 -mkbranch my_branch
变量的值,但是当我为其分配command
然后运行您的代码时,我可以看到输出。您是否可能在命令后错过换行符?写入后,您可能还需要刷新"top\n"
流,尽管在我的测试中没有必要。