我对JSch很陌生。我试图在服务器上运行一些命令,这些命令是我从其他系统获得的输入。 我正在做的就是接受这些命令,并将它们作为参数传递给java方法。 例如:
public String readFileFromPath(String server, String path,
String fileName);
在这里,首先我们必须CD到'path',然后我们需要从路径上存在的文件中读取一些特定的内容。 为了实现这一点,我做了以下工作:
Session session = sshOperations.getSessionWithTimeout(USER,server,SSHPORT,1000);
Channel shellChannel = sshOperations.getShellChannel(session);
InputStream in = new PipedInputStream();
PipedOutputStream consoleInput = new PipedOutputStream((PipedInputStream) in);
OutputStream out = new PipedOutputStream();
BufferedReader consoleOutput = new BufferedReader(new InputStreamReader(new PipedInputStream((PipedOutputStream) out)));
shellChannel.setInputStream(in);
shellChannel.setOutputStream(out);
shellChannel.connect(1000);
consoleInput.write(("cd "+path).getBytes());
// first While
while ((line = consoleOutput.readLine()) != null)
{
System.out.println("check "+ line);
}
// execute second command
consoleInput.write("cat some.properties".getBytes());
// second While
while ((line = consoleOutput.readLine()) != null)
{
System.out.println("check "+ line);
}
现在我知道的是,每当我连接到该服务器时,都会收到欢迎文本:
"You are using <serverName> server.
Please contact admin for any issues"
因此,在第一个while循环之后,我的cd命令运行了,并打印了上述消息。但是,在此之后,它等待输出流中的更多输出(此时卡住了),直到我运行另一个命令,输出流才能产生任何结果。
我不知何故要从第一个while循环中退出,而无需编写消耗2行(固定行)的逻辑。至于下一个命令,我将不知道流中将输出多少行。
请提出获得所需输出的逻辑建议,即我运行了一个命令,某些逻辑消耗了它,然后我开始运行另一个命令,依此类推,直到执行了所有作为参数的命令。
还有其他方法可以达到同样的效果吗?
谢谢
答案 0 :(得分:0)
请勿使用“外壳”频道。 “ shell”通道旨在实现一个交互式会话(因此出现欢迎消息),而不是自动执行命令。
要自动执行命令,请使用“ exec”通道。参见Multiple commands through JSch shell。
尽管您实际上不需要多个命令。不需要cd
。只需在cat
命令中使用完整路径
ChannelExec channel = (ChannelExec) session.openChannel("exec");
channel.setCommand("cat " + path + "/some.properties");
channel.connect();
尽管实际上,如果要读取文件的内容,请使用SFTP,而不要运行诸如cat
之类的控制台命令。 SFTP是用于通过SFTP访问文件的标准化API。