如何使用always-on-top对话框结束Swing程序?

时间:2018-03-06 11:05:08

标签: java swing jframe joptionpane always-on-top

如何完成该计划?我的意思是在执行它并关闭对话框后,Java进程没有完成。它可以在Eclipse中查看,因此红色图标仍处于活动状态,程序无法完成。

import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class Main {

    public static void main(String[] args) {
        try {
            Thread.sleep(2000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }

    private static void createAndShowGUI() {
        JFrame frame = new JFrame("frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setAlwaysOnTop(true);
        JOptionPane.showMessageDialog(
            frame, "test info", "test header", JOptionPane.INFORMATION_MESSAGE);
    }
}

3 个答案:

答案 0 :(得分:1)

在对话框设置为可见后处理框架。

import javax.swing.*;

public class Main {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI();
            }
        });
    }

    private static void createAndShowGUI() {
        JFrame frame = new JFrame("frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setAlwaysOnTop(true);
        JOptionPane.showMessageDialog(
            frame, "test info", "test header", JOptionPane.INFORMATION_MESSAGE);
        // When a frame is disposed, the exit action will be called.
        frame.dispose();
    }
}

答案 1 :(得分:0)

因为您没有调用以下方法: frame.show();frame.setVisible(true);

如果您调用其中一种方法,则框架将显示,然后如果您关闭框架,它将停止运行。

代码更新:

     private static void createAndShowGUI() {

        JFrame frame = new JFrame("frame");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setAlwaysOnTop(true);
        frame.setSize(200, 200);
        frame.setVisible(true);
        JOptionPane.showMessageDialog(frame, "test info", "test header", JOptionPane.INFORMATION_MESSAGE);

    }

答案 2 :(得分:0)

您可以使用以下关闭过程。但这有点难。

System.exit(0);