Java判斷輸入ip是否合法

方法 /** * 判斷IP地址的合法性,這裏採用了正則表達式的方法來判斷 return true,合法 */ public static boolean ipCheck(String text) { if (text != null && !text.isEmpty()) { // 定義正則表達式 String regex = "^(1\\d{2}|2[0-4]\\d|2
相關文章
相關標籤/搜索