私はJavaを初めて使用します。文字列または数値の入力フィールドをチェックするために、このコードを作成しました。
try {
int x = Integer.parseInt(value.toString());
} catch (NumberFormatException nFE) {
// If this is a string send error message
throw new ValidatorException(new FacesMessage(FacesMessage.SEVERITY_ERROR,
" " + findValue + " must be number!", null));
}
番号の同じチェックを作成しますが、if(){}
try-catchなしで使用するにはどうすればよいですか?