ユーザーが 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
}
うまくいかないので、やり方を教えてください。皆さんが私の質問を理解してくれることを願っています