我是靠谱客的博主 文艺手套,最近开发中收集的这篇文章主要介绍Character.isLetterOrDigit(char c)的使用和matches方法的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/*
2.用户输入密码,要求密码满足的条件是:长度大于6且包含数字、大写字母和小写字母,如果不满足条件,则抛出UnSafePasswordException自定义异常类对象。
Character.isLetterOrDigit(char c)的使用
*/


import java.util.*;
class UnSafePasswordException extends Exception{
UnSafePasswordException(String s){
super(s);
}
public void printMsg(){
System.out.println("exception="+this.getMessage());
this.printStackTrace();
System.exit(0);
}


}
class PasswordDemo{
String s;
public void num() throws UnSafePasswordException{
System.out.print("请输入密码:");
Scanner sc=new Scanner(System.in);
s=sc.nextLine();
if(s.length()>6){
for(int i=0;i<s.length();i++){
char c=s.charAt(i);
if(Character.isLetterOrDigit(c)){

}else{
throw new UnSafePasswordException("密码格式有误...");

}
}
}else{
throw new UnSafePasswordException("密码长度应大于6位...");
}
System.out.println("密码符合格式...");
}
public static void run(){
try
{
new PasswordDemo().num();
}
catch (UnSafePasswordException e)
{
e.printMsg();
}


}
public static void main(String[] args) 
{
run();
}

}



/*
2.用户输入密码,要求密码满足的条件是:长度大于6且包含数字、大写字母和小写字母,如果不满足条件,则抛出UnSafePasswordException自定义异常类对象。 
matches方法的使用


*/


import java.util.*;
class UnSafePassworddException extends Exception{
UnSafePassworddException(String s){
super(s);
}
public void printMsg(){
System.out.println("exception="+this.getMessage());
this.printStackTrace();
System.exit(0);
}


}
class PasswordDemo1{
String s;
public void num() throws UnSafePassworddException{
System.out.print("请输入密码:");
Scanner sc=new Scanner(System.in);
s=sc.nextLine();
if(s.length()>6){
String ss="[0-9&a-z]{6,}";
if(s.matches(ss)){
}else{
throw new UnSafePassworddException("密码格式有误...");
}
}else{
throw new UnSafePassworddException("密码长度应大于6位...");
}
System.out.println("密码符合格式...");
}
public static void run(){
try
{
new PasswordDemo1().num();
}
catch (UnSafePassworddException e)
{
e.printMsg();
}


}
public static void main(String[] args) 
{
run();
}
}


转载于:https://www.cnblogs.com/javaTest/archive/2012/04/24/2589478.html

最后

以上就是文艺手套为你收集整理的Character.isLetterOrDigit(char c)的使用和matches方法的使用的全部内容,希望文章能够帮你解决Character.isLetterOrDigit(char c)的使用和matches方法的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部