显示来自控制台应用程序的消息

发布于 2024-10-31 14:01:35 字数 197 浏览 1 评论 0原文

如何从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 技术交流群。

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

发布评论

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

评论(2

孤凫 2024-11-07 14:01:35

您可以使用

JOptionPane.showMessageDialog(null, "Message goes here");

EDIT:

我尝试过

import javax.swing.JOptionPane;

public class Foo{
    public static void main(String a[])
    {
        JOptionPane.showMessageDialog(null, "Message goes here");
    }
}

的输出为

在此处输入图像描述

所以您的问题可能出在其他地方?

You can use

JOptionPane.showMessageDialog(null, "Message goes here");

EDIT:

I tried

import javax.swing.JOptionPane;

public class Foo{
    public static void main(String a[])
    {
        JOptionPane.showMessageDialog(null, "Message goes here");
    }
}

and the output was

enter image description here

so your problem could be somewhere else?

纵情客 2024-11-07 14:01:35

如果您确实需要弹出窗口,请将组件参数设置为 null,这样它将没有父窗口。

If you really need a popup, make the component argument null and it will not have a parent.

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