Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ログインフレームを作りたい パスワードをデータベースに保存しています。このgetPassword()メソッドは、毎回新しい暗号化された文字配列を返します。
getPassword()
String pass = txtPass.getPassword().toString();
データベースに保存されているパスワードとユーザーが指定したパスワードを比較する方法は??
JPasswordField.getPassword()文字配列を返します。char 配列から String を作成するには、 を使用する必要がありますnew String(charArray)。toString()、任意の配列で、配列のタイプとそれに続くハッシュコード([C@39ea2de1のようなもの)を返すため、機能的に興味深い情報ではありません。
JPasswordField.getPassword()
new String(charArray)
toString()
[C@39ea2de1