如何使事件在出现异常时再次触发自身?

发布于 2024-12-09 00:46:34 字数 638 浏览 0 评论 0原文

我有一个 java swing 应用程序,它使用 JSch 连接到远程 Unix 盒子。

用户需要在 Swing 应用程序的 JTextBox 中提供 unix 框的 ip,然后单击应用程序中的“登录”按钮。

如果连接出现问题,我需要提示用户输入另一个 IP。 为此,我捕获 JSchExceptions 并提示用户再次输入有效的 ip....然后在用户输入另一个 ip 后,我尝试再次登录..

我的代码工作正常,直到提示用户再次输入 ip收到 JSchException...但我无法再次触发 ActionEvent 来再次启动登录过程...

我在 LOGIN 按钮上使用了 button.doClick();,但该事件不是再次触发例外!

在网上看到一些例子后我也尝试这样做:

ActionEvent ae = new ActionEvent((Object)button, ActionEvent.ACTION_PERFORMED, "");
Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(ae);

仍然不起作用!

可能是什么问题?我怎样才能让事件再次触发?

感谢您的任何回复。

I have a java swing App that connects to a remote Unix box using JSch.

The user needs to provide the ip of the unix box in a JTextBox in the Swing App and clicks a "LOGIN" button in the App.

I need to prompt the user to enter another ip if there is some problem with the connection.
For this I catch JSchExceptions and prompt the user to enter a valid ip again.... And then after the user enters another ip, I try to login again..

My Code is working fine till prompting the user to enter the ip again on getting a JSchException... But I am not able to trigger the ActionEvent again to initiate the login process again...

I used button.doClick(); on the LOGIN button, but the event is not trigerring again as excepted !!

i also tried to do this after seeing some examples online:

ActionEvent ae = new ActionEvent((Object)button, ActionEvent.ACTION_PERFORMED, "");
Toolkit.getDefaultToolkit().getSystemEventQueue().postEvent(ae);

Still not working !!!

What could be the problem ? How can I make the event trigger itself again ??

Thanks for any responses.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我的鱼塘能养鲲 2024-12-16 00:46:34

也许您忘记重置下一次试验的变量。如果您发布单击按钮时执行的部分代码会更好。

Maybe you forgot to reset the variables for next trial. It would be better if you post part of the code executed when the button is clicked.

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