gpt4 book ai didi

java - 如何用始终在最上面的对话框结束 Swing 程序?

转载 作者:行者123 更新时间:2023-12-02 11:33:18 24 4
gpt4 key购买 nike

如何完成程序?我的意思是,执行它并关闭对话框后,Java 进程不会完成。可以在 Eclipse 中查看它,因此红色图标仍然处于 Activity 状态并且程序未完成。

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

最佳答案

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

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

关于java - 如何用始终在最上面的对话框结束 Swing 程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49129307/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com