JOptionPane show只需一个按钮即可确认对话框

2022-09-03 03:21:04

我只需要在 中有一个按钮。showConfirmDialog

我试过这个:

int response = JOptionPane.showConfirmDialog(null, "Time Entered Successfully",
                   "", JOptionPane.OK_OPTION, JOptionPane.PLAIN_MESSAGE);

if (response == JOptionPane.CLOSED_OPTION || response == JOptionPane.OK_OPTION)
{
   System.out.println("CLOSING>>>>>>");
}

但这显示了与Yes_No_option的对话。

我只想在那里显示“确定”按钮。可能吗?


答案 1

尝试使用这个,它只创建一个按钮

JOptionPane.showMessageDialog(null, "Loading Complete...!!!");

答案 2

我只想在那里显示“确定”按钮。可能吗?

使用 showOptionDialog() 方法。

    Object[] options = {"OK"};
    int n = JOptionPane.showOptionDialog(frame,
                   "Message here ","Title",
                   JOptionPane.PLAIN_MESSAGE,
                   JOptionPane.QUESTION_MESSAGE,
                   null,
                   options,
                   options[0]);

推荐