java判斷輸入的字串是否是一個IP
public class Test {
public String 除去空格(String IP){//去掉IP字串前後所有的空格
while(IP.startsWith(" ")){
IP= IP.substring(1,IP.length()).trim();
}
while(IP.endsWith(" ")){
IP= IP.substring(0,IP.length()-1).trim();
}
return IP;
}
public boolean isIp(String IP){//判斷是否是一個IP
boolean b = false;
IP = this.除去空格(IP);
if(IP.matches("\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}")){
String s[] = IP.split("\\.");
if(Integer.parseInt(s[0])<255)
if(Integer.parseInt(s[1])<255)
if(Integer.parseInt(s[2])<255)
if(Integer.parseInt(s[3])<255)
b = true;
}
return b;
}
public static void main(String[] args) {
String s =" 111.110.133.244 ";
Test test = new Test();
System.out.println(test.isIp(s)?"是一個IP":"不是一個IP");
}
}