JAVA和C#检测IP地址段是否交叉和获取地址段IP列表的方法
JAVA和C#检测IP地址段是否交叉和获取地址段IP列表的方法
一、说明
我们经常编程时,需要对一个DIDR地段计算其可用IP地址,或者验证某个IP是否被包含在一个地址段中。
二、工具
1、Java 可以使用 cidr-ip-trie库解决。
https://github.com/veqryn/cidr-ip-trie
package com.test.utils;
import com.github.veqryn.net.Cidr4;
import org.junit.Test;
public class CIDRTest {
@Test
public void verifyCidr() {
com.github.veqryn.net.Cidr4 cidr1 = new Cidr4("192.168.1.0/28");
com.github.veqryn.net.Cidr4 cidr2 = new Cidr4("192.168.0.0/30");
boolean isInRange = cidr1.isInRange(cidr2, true);
System.out.println(isInRange);
System.out.println("---------------");
System.out.println(cidr1.getLowBinaryInteger(true));
System.out.println(cidr1.getHighBinaryInteger(true));
System.out.println("---------------");
System.out.println(cidr2.getLowBinaryInteger(true));
System.out.println(cidr2.getHighBinaryInteger(true));
System.out.println("---------------");
System.out.println(cidr1.getAddressRange());
System.out.println(cidr2.getAddressRange());
String[] addresses1 = cidr1.getAllAddresses(true);
for (String s : addresses1) {
System.out.println(s);
}
System.out.println("---------------");
String[] addresses2 = cidr2.getAllAddresses(true);
for (String s : addresses2) {
System.out.println(s);
}
}
}
2、C# 可以使用IPAddressRange库解决。
JAVA和C#检测IP地址段是否交叉和获取地址段IP列表的方法
https://www.dearcloud.cn/2018/10/18/20200310-cnblogs-old-posts/20181018-JAVA和CSharp检测IP地址段是否交叉和获取地址段IP列表的方法/