码迷,mamicode.com
首页 > 移动开发 > 详细

判断手机号归属运营商

时间:2014-06-29 14:55:30      阅读:426      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   javascript   

bubuko.com,布布扣
 1     /**
 2      * 手机号归属运营商查询
 3      * @param phone
 4      */
 5     public static void mobileOperator(String phone) {
 6         // cmcc-中国移动手机号码规则
 7         String cmccRegex = "^[1]{1}(([3]{1}[4-9]{1})|([5]{1}[89]{1}))[0-9]{8}$";
 8         // cucc-中国联通手机号码规则
 9         String cuccRegex = "^[1]{1}(([3]{1}[0-3]{1})|([5]{1}[3]{1}))[0-9]{8}$";
10         // cnc--中国网通3G手机号码规则
11         String cncRegex = "^[1]{1}[8]{1}[89]{1}[0-9]{8}$";
12         
13         if(phone.length()!=11){
14             System.out.println("手机号必须是11位");
15         }else if (phone.matches(cuccRegex)) {
16             System.out.println("中国联通的手机号码");
17         } else if (phone.matches(cmccRegex)) {
18             System.out.println("中国移动的手机号码");
19         } else if (phone.matches(cncRegex)) {
20             System.out.println("中国网通3G的手机号码");
21         } else {
22             System.out.println("未知的手机号");
23         }
24     }
bubuko.com,布布扣

 

判断手机号归属运营商,布布扣,bubuko.com

判断手机号归属运营商

标签:style   blog   http   java   color   javascript   

原文地址:http://www.cnblogs.com/tfgzs/p/3755376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!