由于我想将用户在 jTextFields 中输入的用户 ID 和密码与我的 mongodb 文档中存在的用户 ID 和密码的值进行比较,因此 Mongodb 中的文档如下所示:
{ "_id" : ObjectId("500ee83ca5d4c30481aa2a13"),
"User ID" : 10,
"Password" : "4554gf",}
下面的代码在我的Login
按钮上
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
int s1 = Integer.parseInt(jTextField1.getText()); //number entering in jtextfield
String s2 = jPasswordField1.getText(); //password enter by user
if(s1== UserId && s2==password) {
this.dispose();//this will dispose the login gui
a.setVisible(true);//this will visible the nxt gui
}
else {
asd.setText("invalid user"); // label that shows if userid and dont match
}
所以它不工作,所以请告诉怎么做?我希望你们都明白我的问题