java编程实现自定义异常判断一个手机号码的合法性
3个回答
2015-04-03
展开全部
用正则判断,
/**
* 验证手机号码格式是否正确
* @param mobiles
* @return true 表示正确 false表示不正确
*/
public static boolean isMobileNum(String mobiles) {
Pattern p = Pattern.compile("^((13[0-9])|(15[0-9])|(18[0-9]))\\d{8}");
Matcher m = p.matcher(mobiles);
return m.matches();
}
当然手机号码好像还有17开头的,对应的正则改一下就好
"^((13[0-9])|(15[0-9])|(18[0-9])|(17[0-9]))\\d{8}"
然后在你的代码里面调用这个方法,如果结果为false,就throw new MyException(“手机号码格式不正确”)一个异常。
异常定义可以去继承Exception
/**
* Created by Kevin on 2015/3/30.
*/
public class MyException extends Exception{
private String msg;
public MyException(String msg) {
super(msg);
this.msg = msg;
}
@Override
public String getMessage() {
return msg;
}
}
2015-04-03 · 知道合伙人软件行家
关注
展开全部
public class ValidateException extends Exception{
public ValidateException (String message){
super(message);
}
}
public class Test{
public static void main(String[] args){
String phone="1222222222";
try{
boolean flag=
Pattern
.compile("^((13[0-9])|(15[^4,\\D])|(18[^1^4,\\D]))\\d{8}")
.matcher(phone).matches();
if(!flag)
throw new ValidateException ("手机号码不合法!");
}
}catch(ValidateException e){
System.out.print("错误信息:"+e.getMessage());
}
}
public ValidateException (String message){
super(message);
}
}
public class Test{
public static void main(String[] args){
String phone="1222222222";
try{
boolean flag=
Pattern
.compile("^((13[0-9])|(15[^4,\\D])|(18[^1^4,\\D]))\\d{8}")
.matcher(phone).matches();
if(!flag)
throw new ValidateException ("手机号码不合法!");
}
}catch(ValidateException e){
System.out.print("错误信息:"+e.getMessage());
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
Matcher m = p.matcher(mobiles);
正则表达式验证
Matcher m = p.matcher(mobiles);
正则表达式验证
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询