NumberFormatException
入力文字列をチェックすることは可能""
ですか?
ユーザーが値を入力しなかった場合、NumberFormatException の代わりにエラー メッセージが表示されるように、プログラムを作成しようとしました。
if(pasientNavnFelt.getText() == "" || pasientNrFeIt.getText() == "")
{
utskriftsområde.setText("ERROR, insert values");
}
if(pasientNavnFelt.getText() != "" || pasientNrFeIt.getText() != "")
{
// rest of code here if the program had values in it
}
私もヌルで試しました:
if(pasientNavnFelt.getText() == null || pasientNrFeIt.getText() == null)
{
utskriftsområde.setText("ERROR, insert values");
}
if(pasientNavnFelt.getText() != null || pasientNrFeIt.getText() != null)
{
// rest of code here if the program had values in it
}
私はまだ得る:
Exception in thread "AWT-EventQueue-0" java.lang.NumberFormatException: For input string: ""
値がある場合、プログラムは正常に動作します。