3.2.2 Java OOPs - PasswordGenerator
The password generator will create a random password of a length from 5 to 8 characters long.
The passwords generated will not contain characters that can easily be confused.
Examples:
- O,0: uppercase o and zero;
- 1,l,I: one, lowercase L and uppercase i
Use the Java Random( ) class example below to see the syntax of the Random ( ) class
This class will not display any data
PasswordGenerator()Class
PasswordGenerator()Class
HAS-A: attributes -- All instance variables are private
rn a Random number generator
RESPONDS-TO:
The constructor will start the random number generator
METHODS:
nextPassword( )
will return a password 5 to 8 characters long
nextLetter()
will return a random acceptable character for the password
Logic (Algorithm) for nextPassword()
Logic (Algorithm) for nextPassword()
In nextPassword()
- set the password to the empty string
- randomly set the length of the password from 5 to 8
- for the length of the password
- concatenate the nextLetter() to the password
- return the password
Logic (Algorithm) for the nextLetter()
Logic (Algorithm) for the nextLetter()
In nextLetter()
- set the value of a string to all of the acceptable passwordCharacters
- extract a random nextLetter from the acceptable passwordCharacters
- return the nextLetter
Java Random() class Example
Java Random() class Example