This week's book giveaway is in the Flex forum.
We're giving away four copies of Flex 4 in Action and have Tariq Ahmed, Dan Orlando, John C. Bland II & Joel Hooks on-line!
See this thread for details.
[Logo] JavaRanch » JavaRanch Saloon
  Search | FAQ | Recent Topics | Hot Topics
Register / Login


Win a copy of Flex 4 in Action this week in the Flex forum!
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Beginning Java
 
RSS feed
 
New topic
Author

Java SE 6 validating Required data elements

duane skey
Greenhorn

Joined: Jun 16, 2009
Messages: 3

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
Sheriff

Joined: Jan 10, 2002
Messages: 36569

"coach win", please check your private messages for an important administrative matter.

[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Rob Prime
Bartender

Joined: Oct 27, 2005
Messages: 8816

Please Use Code Tags. You can edit your post to add them.

SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
Rob Prime
Bartender

Joined: Oct 27, 2005
Messages: 8816

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.

SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
duane skey
Greenhorn

Joined: Jun 16, 2009
Messages: 3

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
Rob Prime
Bartender

Joined: Oct 27, 2005
Messages: 8816

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

SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
 
 
Reply Bookmark it! Watch this topic JavaRanch » Forums » Java » Beginning Java
 
RSS feed
 
New topic
replay challenge