Java判断IP是否在指定范围

2009-07-22 11:12
  1. public class ipTest {  
  2.     /**
  3.       * 判断IP是否在指定范围;
  4.       */  
  5.     boolean i;  
  6.     public static boolean ipIsValid(String ipSection, String ip) {  
  7.         if (ipSection == null)  
  8.             throw new NullPointerException("IP段不能为空!");  
  9.         if (ip == null)  
  10.             throw new NullPointerException("IP不能为空!");  
  11.          ipSection = ipSection.trim();  
  12.          ip = ip.trim();  
  13.         final String REGX_IP = "((25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]\\d|\\d)\\.){3}(25[0-5]|2[0-4]\\d|1\\d{2}|[1-9]\\d|\\d)";  
  14.         final String REGX_IPB = REGX_IP + "\\-" + REGX_IP;  
  15.         if (!ipSection.matches(REGX_IPB) || !ip.matches(REGX_IP))  
  16.             return false;  
  17.         int idx = ipSection.indexOf('-');  
  18.          String[] sips = ipSection.substring(0, idx).split("\\.");  
  19.          String[] sipe = ipSection.substring(idx + 1).split("\\.");  
  20.          String[] sipt = ip.split("\\.");  
  21.         long ips = 0L, ipe = 0L, ipt = 0L;  
  22.         for (int i = 0; i < 4; ++i) {  
  23.              ips = ips << 8 | Integer.parseInt(sips[i]);  
  24.              ipe = ipe << 8 | Integer.parseInt(sipe[i]);  
  25.              ipt = ipt << 8 | Integer.parseInt(sipt[i]);  
  26.          }  
  27.         if (ips > ipe) {  
  28.             long t = ips;  
  29.              ips = ipe;  
  30.              ipe = t;  
  31.          }  
  32.         return ips <= ipt && ipt <= ipe;  
  33.      }  
  34.     public static void main(String[] args) {  
  35.         if (ipIsValid("192.168.1.1-192.168.1.10", "192.168.3.54")) {  
  36.              System.out.println("ip属于该网段");  
  37.          } else  
  38.              System.out.println("ip不属于该网段");  
  39.      }  
  40. }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值