คลาสเครื่องมือ Java สำหรับการประมวลผล IP รวมถึงการแปลง IP แบบยาวเป็นประเภท IP ทั่วไป การแปลงประเภท xx.xx.xx.xx เป็นประเภทยาว การได้รับมาสก์ตามบิตของมาสก์ และการคำนวณ IP ตามวิธีการของบิต ip/mask เช่น IP เริ่มต้นของเซ็กเมนต์และ IP สิ้นสุดของเซ็กเมนต์ IP ที่อิงตามบิต ip/mask สามารถใช้ได้โดยตรง!
คัดลอกรหัสรหัสดังต่อไปนี้:
แพ็คเกจ com.hh.test;
นำเข้า java.util.HashMap;
นำเข้า java.util.Map;
นำเข้า org.apache.commons.lang3.StringUtils;
-
* เครื่องมือไอพี
-
* @ผู้เขียน bl
* @อีเมล [email protected]
-
-
IPutils คลาสสาธารณะ
-
-
* แปลง IP แบบยาวเป็นประเภท IP ทั่วไป: xx.xx.xx.xx
-
* @param ip
* @กลับ
-
สาธารณะสตริงคงที่ getIpFromLong (IP แบบยาว)
-
สตริง s1 = String.valueOf((ip & 4278190080L) / 16777216L);
สตริง s2 = String.valueOf((ip & 16711680L) / 65536L);
สตริง s3 = String.valueOf((ip & 65280L) / 256L);
สตริง s4 = String.valueOf (ip & 255L);
กลับ s1 + "." + s2 + "." + s3 + "."
-
-
* แปลงประเภท xx.xx.xx.xx เป็นประเภทยาว
-
* @param ip
* @กลับ
-
getIpFromString แบบคงที่สาธารณะ (String ip)
-
ยาว ipLong = 0L;
สตริง ipTemp = ip;
ipLong = ipLong * 256
+ Long.parseLong(ipTemp.substring(0, ipTemp.indexOf(".")));
ipTemp = ipTemp.substring(ipTemp.indexOf(".") + 1, ipTemp.length());
ipLong = ipLong * 256
+ Long.parseLong(ipTemp.substring(0, ipTemp.indexOf(".")));
ipTemp = ipTemp.substring(ipTemp.indexOf(".") + 1, ipTemp.length());
ipLong = ipLong * 256
+ Long.parseLong(ipTemp.substring(0, ipTemp.indexOf(".")));
ipTemp = ipTemp.substring(ipTemp.indexOf(".") + 1, ipTemp.length());
ipLong = ipLong * 256 + Long.parseLong(ipTemp);
กลับ ipLong;
-
-
* รับมาสก์ตามบิตของมาส์ก
-
* @param maskBit
* จำนวนหลักมาสก์ เช่น "28", "30"
* @กลับ
-
สาธารณะสตริงคงที่ getMaskByMaskBit (String maskBit)
-
return StringUtils.isEmpty(maskBit) ? "ข้อผิดพลาด, maskBit เป็นโมฆะ!"
: maskBitMap().get(maskBit);
-
-
* คำนวณ IP เริ่มต้นของส่วน IP ตามบิต ip/mask เช่น สตริง IP 218.240.38.69/30
-
* @param ip
* IP ที่กำหนด เช่น 218.240.38.69
* @param maskBit
* ให้มาส์กบิต เช่น 30
* @return การแสดงสตริงของ IP เริ่มต้น
-
สาธารณะสตริงคงที่ getBeginIpStr (สตริง ip, String maskBit)
-
กลับ getIpFromLong(getBeginIpLong(ip, maskBit));
-
-
* คำนวณ IP เริ่มต้นของส่วน IP ตามบิต ip/mask เช่น สตริง IP 218.240.38.69/30
-
* @param ip
* IP ที่กำหนด เช่น 218.240.38.69
* @param maskBit
* ให้มาส์กบิต เช่น 30
* @return การแสดงจำนวนเต็มแบบยาวของ IP เริ่มต้น
-
getBeginIpLong แบบคงที่สาธารณะ (String ip, String maskBit)
-
ส่งคืน getIpFromString (ip) & getIpFromString (getMaskByMaskBit (maskBit));
-
-
* คำนวณ IP สิ้นสุดของส่วน IP ตามบิต ip/mask เช่น สตริง IP 218.240.38.69/30
-
* @param ip
* IP ที่กำหนด เช่น 218.240.38.69
* @param maskBit
* ให้มาส์กบิต เช่น 30
* @return การแสดงสตริงของ IP การสิ้นสุด
-
สาธารณะสตริงคงที่ getEndIpStr (String ip, String maskBit)
-
กลับ getIpFromLong(getEndIpLong(ip, maskBit));
-
-
* คำนวณ IP สิ้นสุดของส่วน IP ตามบิต ip/mask เช่น สตริง IP 218.240.38.69/30
-
* @param ip
* IP ที่กำหนด เช่น 218.240.38.69
* @param maskBit
* ให้มาส์กบิต เช่น 30
* @return การแสดงจำนวนเต็มแบบยาวของ IP การยกเลิก
-
getEndIpLong แบบคงที่สาธารณะ (String ip, String maskBit)
-
กลับ getBeginIpLong (ip, maskBit)
+ ~getIpFromString(getMaskByMaskBit(maskBit));
-
-
* แปลงเป็นมาสก์บิตตามซับเน็ตมาสก์ เช่น 255.255.255.252 ซึ่งแปลงเป็นมาส์กบิต 30
-
* @param netmarks
* @กลับ
-
int สาธารณะคงที่ getNetMask (สตริง netmarks)
-
StringBuffer sbf;
สตริง str;
int inetmask = 0, นับ = 0;
สตริง[] ipList = netmarks.split("//.");
สำหรับ (int n = 0; n < ipList.length; n++)
-
sbf = toBin(Integer.parseInt(ipList[n]));
str = sbf.reverse().toString();
นับ = 0;
สำหรับ (int i = 0; i < str.length(); i++)
-
i = str.indexOf('1', i);
ถ้า (ฉัน == -1)
-
หยุดพัก;
-
นับ++;
-
inetmask += นับ;
-
กลับ inetmask;
-
-
* คำนวณขนาดเครือข่ายย่อย
-
* @param netmask
* มาส์กบิต
* @กลับ
-
int สาธารณะคงที่ getPoolMax (int maskBit)
-
ถ้า (maskBit <= 0 || maskBit >= 32)
-
กลับ 0;
-
กลับ (int) Math.pow (2, 32 - maskBit) - 2;
-
StringBuffer toBin ส่วนตัวแบบคงที่ (int x)
-
ผลลัพธ์ StringBuffer = StringBuffer ใหม่ ();
ผลลัพธ์ผนวก (x % 2);
x /= 2;
ในขณะที่(x>0)
-
ผลลัพธ์ผนวก (x % 2);
x /= 2;
-
ส่งคืนผลลัพธ์;
-
-
* เก็บบิตมาสก์ทั้งหมดและคีย์มาสก์ที่เกี่ยวข้อง: ค่าบิตมาสก์: หน้ากาก (xxxx)
-
แผนที่คงที่ส่วนตัว <String, String> maskBitMap()
-
แผนที่<String, String> maskBit = ใหม่ HashMap<String, String>();
maskBit.put("1", "128.0.0.0");
maskBit.put("2", "192.0.0.0");
maskBit.put("3", "224.0.0.0");
maskBit.put("4", "240.0.0.0");
maskBit.put("5", "248.0.0.0");
maskBit.put("6", "252.0.0.0");
maskBit.put("7", "254.0.0.0");
maskBit.put("8", "255.0.0.0");
maskBit.put("9", "255.128.0.0");
maskBit.put("10", "255.192.0.0");
maskBit.put("11", "255.224.0.0");
maskBit.put("12", "255.240.0.0");
maskBit.put("13", "255.248.0.0");
maskBit.put("14", "255.252.0.0");
maskBit.put("15", "255.254.0.0");
maskBit.put("16", "255.255.0.0");
maskBit.put("17", "255.255.128.0");
maskBit.put("18", "255.255.192.0");
maskBit.put("19", "255.255.224.0");
maskBit.put("20", "255.255.240.0");
maskBit.put("21", "255.255.248.0");
maskBit.put("22", "255.255.252.0");
maskBit.put("23", "255.255.254.0");
maskBit.put("24", "255.255.255.0");
maskBit.put("25", "255.255.255.128");
maskBit.put("26", "255.255.255.192");
maskBit.put("27", "255.255.255.224");
maskBit.put("28", "255.255.255.240");
maskBit.put("29", "255.255.255.248");
maskBit.put("30", "255.255.255.252");
maskBit.put("31", "255.255.255.254");
maskBit.put("32", "255.255.255.255");
กลับหน้ากากBit;
-
-
* รับมาสก์ตามบิตของมาส์ก
-
* @param มาสก์
* @กลับ
-
@เลิกใช้แล้ว
สตริงสาธารณะคงที่ getMaskByMaskBit (มาสก์ int)
-
สตริง ret = "";
ถ้า (มาสก์ == 1)
ret = "128.0.0.0";
อย่างอื่นถ้า (มาสก์ == 2)
ret = "192.0.0.0";
อย่างอื่นถ้า (มาสก์ == 3)
ret = "224.0.0.0";
อย่างอื่นถ้า (มาสก์ == 4)
ret = "240.0.0.0";
อย่างอื่นถ้า (มาสก์ == 5)
ret = "248.0.0.0";
อย่างอื่นถ้า (มาสก์ == 6)
ret = "252.0.0.0";
อย่างอื่นถ้า (มาสก์ == 7)
ret = "254.0.0.0";
อย่างอื่นถ้า (มาสก์ == 8)
ret = "255.0.0.0";
อย่างอื่นถ้า (มาสก์ == 9)
ret = "255.128.0.0";
อย่างอื่นถ้า (มาสก์ == 10)
ret = "255.192.0.0";
อย่างอื่นถ้า (มาสก์ == 11)
ret = "255.224.0.0";
อย่างอื่นถ้า (มาสก์ == 12)
ret = "255.240.0.0";
อย่างอื่นถ้า (มาสก์ == 13)
ret = "255.248.0.0";
อย่างอื่นถ้า (มาสก์ == 14)
ret = "255.252.0.0";
อย่างอื่นถ้า (มาสก์ == 15)
ret = "255.254.0.0";
อย่างอื่นถ้า (มาสก์ == 16)
ret = "255.255.0.0";
อย่างอื่นถ้า (มาสก์ == 17)
ret = "255.255.128.0";
อย่างอื่นถ้า (มาสก์ == 18)
ret = "255.255.192.0";
อย่างอื่นถ้า (มาสก์ == 19)
ret = "255.255.224.0";
อย่างอื่นถ้า (มาสก์ == 20)
ret = "255.255.240.0";
อย่างอื่นถ้า (มาสก์ == 21)
ret = "255.255.248.0";
อย่างอื่นถ้า (มาสก์ == 22)
ret = "255.255.252.0";
อย่างอื่นถ้า (มาสก์ == 23)
ret = "255.255.254.0";
อย่างอื่นถ้า (มาสก์ == 24)
ret = "255.255.255.0";
อย่างอื่นถ้า (มาสก์ == 25)
ret = "255.255.255.128";
อย่างอื่นถ้า (มาสก์ == 26)
ret = "255.255.255.192";
อย่างอื่นถ้า (มาสก์ == 27)
ret = "255.255.255.224";
อย่างอื่นถ้า (มาสก์ == 28)
ret = "255.255.255.240";
อย่างอื่นถ้า (มาสก์ == 29)
ret = "255.255.255.248";
อย่างอื่นถ้า (มาสก์ == 30)
ret = "255.255.255.252";
อย่างอื่นถ้า (มาสก์ == 31)
ret = "255.255.255.254";
อย่างอื่นถ้า (มาสก์ == 32)
ret = "255.255.255.255";
กลับมาอีกครั้ง;
-
-