我尝试使用Jsch在Java中建立SSH连接。我得到了异常com.jcraft.jsch.jschexception unknownhostkey

时间:2015-11-02 13:25:30

标签: jsch

jsch.setKnownHosts(new FileInputStream(SSHHostKey));
jsch.addIdentity(SSHKey);
session = jsch.getSession(user, host, port);
if (hostKey == null)
{
    session.setConfig("StrictHostKeyChecking", "no");
}
session.setPassword(pass);
session.connect();
channel = session.openChannel("sftp");
channel.connect();
sftp = (ChannelSftp) channel;

我仍然得到同样的例外。 谁能告诉我如何获取/重审HostKey?我正在使用Windows。

0 个答案:

没有答案