最佳答案
我不确定如何在我的方法中编码弹出消息框。
public String verify(){
String result = "failed";
int authcode = staffBean.getVerifyCodeByName(getLoginUserName());
if (code == authcode){
result ="success";
}
else{ //statement to popup an error message box
}
return result;
}
我已经尝试在我的方法中使用 JOptionPane
,但它不起作用:
String st = "Welcome";
JOptionPane.showMessageDialog(null, st);