号码归属地查询 核心平台 NGD

号码归属地查询模块已发布。目前仅提供两个方法,具体见代码:

 

  
  
  
  
  1. /**
    *
    * <B>号码归属查询类</B><br>
    *
    * @author NGD
    * @since 1.0
    */
  2. final SearcherUtil searcherUtil = SearcherUtil.getInstance(); 
  3. /** 
  4.  * 输入参数 :7-11位手机号码  
  5.  * 输出参数:手机号码归属地信息 
  6.  * eg: in->1358153 out->北京北京 
  7.  */ 
  8. final String phoneNumlocInfo = searcherUtil.getProvinceNameByPhoneSeq("1358153"); 
  9.          
  10. /** 
  11.  * 输入参数 :7-11位手机号码  
  12.  * 输出参数:手机号码归属省份编码 
  13.  * eg: in->1358153 out->11 
  14.  */ 
  15. final String phoneNumlocCode = searcherUtil.getProvinceCodeByPhoneSeq("1358153"); 

ivy配置:

 

  
  
  
  
  1. <dependency> 
  2.   <groupId>com.targtime</groupId> 
  3.   <artifactId>tage-fromwhere</artifactId> 
  4.   <version>1.0</version> 
  5. </dependency> 

 

你可能感兴趣的:(号码归属地查询)