♠ Posted by ANDROID THIRST in EXAMPLES
A simple program in Java that generates a random password combination of Character, Number, Special symbols.
Here is the code snippet to generate random password in java..........
package password.generater;
import java.util.Random;
/**
*
* @author dell
*/
public class PasswordGenerater {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int length= 8;
System.out.println(generatePswd(length));
// TODO code application logic here
}
static char[] generatePswd(int len){
...