显示来自控制台应用程序的消息
如何从java控制台应用程序在窗口中弹出消息?如果我使用JOptionPane
,那么我需要传递可见的组件。但是如果我想从控制台应用程序显示一些警告或错误(其中没有任何可见窗口),那么我无法使用 JOptionPane。另外,我希望显示的消息显示在任何其他应用程序的顶部上(以引起用户的注意)。
提前致谢。
How do I pop up message in window from java console application?If I use JOptionPane
, then I need to pass component which is visible.But if I want to show some warning or error from console application(which does not have any window visible), Then I cant use JOptionPane. Also I want the displayed message to be shown on top of any other application(To get the attention of user ).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
我尝试过
的输出为
所以您的问题可能出在其他地方?
You can use
I tried
and the output was
so your problem could be somewhere else?
如果您确实需要弹出窗口,请将组件参数设置为 null,这样它将没有父窗口。
If you really need a popup, make the component argument null and it will not have a parent.