Jcraft jsch 没有交互式弹出窗口

发布于 2024-10-14 21:00:05 字数 559 浏览 0 评论 0原文

我最近尝试了 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

弃爱 2024-10-21 21:00:05

你需要设置 config.put("StrictHostKeyChecking", "no");

这就是窍门

yu need to set config.put("StrictHostKeyChecking", "no");

This is the trick

春风十里 2024-10-21 21:00:05

我编辑了上面的问题以包含可能的解决方案。

I edited the question above to contain a possible solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文