如何检查 JOptionPane 是否可见?
我有一个 JOptionPane 选项对话框,在我的应用程序中调用该对话框,以防存在无效文件。然后它会获取正确文件的输入。
只要应用程序在 GUI 环境中运行就可以。
要求 对于无头服务器,我需要首先验证选项窗格是否可见。如果它不可见,我需要在命令行上显示错误并退出。
我该如何实现这一目标? 有没有办法检查 JOptionPane 是否可见?
I have a JOptionPane option dialog which is called in my application in case there is an invalid file. It then takes input for the right file.
This is fine as long as the application is running in a GUI environment.
Requirement
In the case of a headless server, I need to first verify if the option pane is visible. If it is invisible, I need to display the error on the command line and exit.
How do I achieve this?
Is there a way to check if JOptionPane is visible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许检查一下你是否无头就足够了。您可以通过方法 来执行此操作
GraphicsEnvironment.isHeadless()
。Maybe it is sufficient to check if you are headless. You can do so by the method
GraphicsEnvironment.isHeadless()
.不确定这会对您有帮助,但我建议使用 Component.isShowing() 方法。
Not sure this will help you but I'm suggesting the use of
Component.isShowing()
method.