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的对话。
我只想在那里显示“确定”按钮。可能吗?