子网转换为String类型ip数组
将一个子网转化为Ip数组集合
代码
SubnetUtils utils = new SubnetUtils("192.18.0.1/24");
utils.setInclusiveHostCount(true);//是否包含开始与结束ip
String[] allIps = utils.getInfo().getAllAddresses();
原理
使用的是apache的类
使用的jar包
<dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>3.3</version>
</dependency>