有没有办法使用任何/function/trick来计算CIDR
给定的 a ?我一直在寻找一段时间,我能找到的只是来自 ,我需要它的另一种方式 ......我不是那么方便,但我愿意阅读很多=)thnx伙计们Sub net mask
Java lib
CIDR -> Netmask
Netmask -> CIDR
Java
PzP =)
举了一个简单的例子。这会将 anInetAddress
转换为 cidr 值,它还验证InetAddress
表示有效的网络掩码。
测试输入为255.255.128.0
。输出 cidr 是17
.
package com.stackoverflow._19531411;
import java.net.InetAddress;
public class NetmaskToCIDR {
public static int convertNetmaskToCIDR(InetAddress netmask){
byte[] netmaskBytes = netmask.getAddress();
int cidr = 0;
boolean zero = false;
for(byte b : netmaskBytes){
int mask = 0x80;
for(int i = 0; i < 8; i++){
int result = b & mask;
if(result == 0){
zero = true;
}else if(zero){
throw new IllegalArgumentException("Invalid netmask.");
} else {
cidr++;
}
mask >>>= 1;
}
}
return cidr;
}
public static void main(String[] args) throws Exception {
InetAddress netmask = InetAddress.getByName("255.255.128.0");
System.out.println(convertNetmaskToCIDR(netmask));
}
}
您可以使用Apache SubnetUtils 模块toCidrNotation
中的函数来执行此操作。这是一个 Java 示例。
看看 Apache Net Jar(SubnetUtils 类)http://commons.apache.org/proper/commons-net/download_net.cgi
同样在我正在做的一个项目中,我们使用了出色的 Postgres DB 函数,它也支持 IPV6 http://www.postgresql.org/docs/8.1/static/functions-net.html
http://commons.apache.org/proper/commons-net/javadocs/api-3.3/index.html