码迷,mamicode.com
首页 > Web开发 > 详细

URL验证

时间:2016-11-07 09:35:13      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:false   返回   color   字符   bsp   mat   ret   match   turn   

/**
* 验证网址Url
* 
* @param 待验证的字符串
* @return 如果是符合格式的字符串,返回 <b>true </b>,否则为 <b>false </b>
*/
public static boolean IsUrl(String str) {
String regex = "http(s)?://([\\w-]+\\.)+[\\w-]+(/[\\w- ./?%&=]*)?";
return match(regex, str);
}

 

URL验证

标签:false   返回   color   字符   bsp   mat   ret   match   turn   

原文地址:http://www.cnblogs.com/20gg-com/p/6037445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!