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

问题描述 投票:0回答:3

如何完成该计划?我的意思是在执行它并关闭对话框后,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);
    }
}
java swing jframe joptionpane always-on-top
3个回答
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();
    }
}

0
投票

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

System.exit(0);

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);

    }
© www.soinside.com 2019 - 2024. All rights reserved.