int s = JOptionPane.showConfirmDialog(null, "确定要提交吗", "提交", JOptionPane.YES_NO_CANCEL_OPTION);
if (s == 0) {
JOptionPane.showMessageDialog(null, "你点的是确定!");
}
if (s == 1) {
JOptionPane.showMessageDialog(null, "你点的是否!");
}
if (s == 2) {
JOptionPane.showMessageDialog(null, "你点的是取消!");
}