Jcraft jsch 没有交互式弹出窗口
我最近尝试了 ssh lib jsch 。我尝试了这里找到的示例:
http://www.jcraft.com/jsch/examples/ ScpTo.java
有没有一种方法可以通过编程方式进行身份验证,而不是通过 Java 弹出窗口?有一堆我不想要的 Swing 组件(或类似组件),我只需要将密码放在代码中的某个位置即可。
我尝试制作自己的 UserIno 实现,但出现身份验证错误。
谢谢!
好吧,我自己找到了。这是你必须要做的:
session.setPassword(password.getBytes());
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.connect();
I tried the ssh lib jsch recently. I tried the example found here:
http://www.jcraft.com/jsch/examples/ScpTo.java
Is there a way to authenticate programatically, and not through the Java pop up windows? Theres a bunch of Swing components (or similar) that I dont want, I just need to put the password somwhere in the code.
I tried making my own impl of UserIno, but gor an authentication error.
thanks!
Ok, I found it myself. This is what u have to to:
session.setPassword(password.getBytes());
java.util.Properties config = new java.util.Properties();
config.put("StrictHostKeyChecking", "no");
session.setConfig(config);
session.connect();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要设置 config.put("StrictHostKeyChecking", "no");
这就是窍门
yu need to set config.put("StrictHostKeyChecking", "no");
This is the trick
我编辑了上面的问题以包含可能的解决方案。
I edited the question above to contain a possible solution.