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

 

   
   
   
   
  1. /**
    *
    * 号码归属查询类

    *
    * @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.targtimegroupId> 
  3.   <artifactId>tage-fromwhereartifactId> 
  4.   <version>1.0version> 
  5. dependency>