I need help Validating the required data elements in this program. I need the Patient id,Patient last name Patient first name, Patient primary care physician, Patient address1,Patient city, Patient State, Patient zip. all validated (entered as non-spaces) If invalid data is ,entered, display an "invalid input of type .. Record reject" message and use the COUNTINUE statement to return to the top of the loop to allow a new entry to be made.
This message was edited 1 time. Last update was at by duane skey
Bear Bibeault
Author and opinionated walrus
Marshal
Check out Scanner's other methods, like nextInt(). Also, use the hasNextXXX methods to check if data is available. For instance:
To make sure your code remains readable, you can create one method for each different type of validation.
duane skey
Greenhorn
Joined: Jun 16, 2009
Posts: 3
posted
0
inserted the code into the program and this is the error
recieved this Error on This line
if (id == null || <id is invalid>);
Multiple markers at this line
- Syntax error on token "is", , expected
- String literal is not properly closed by a
double-quote
- Syntax error on token(s), misplaced construct
(s)
- Syntax error on tokens, delete these tokens
The <id is invalid> is pseudo code. You should fill that in yourself, based on the logic of when an ID is invalid. As I said, you could create a method "boolean isValidPatientID(String id)", then change the if to
subject: Java SE 6 validating Required data elements