确定string是否是Java中使用Regex的URL

时间:2011-04-19 20:17:19

标签: java regex url string

  

可能重复:
  What is the best regular expression to check if a string is a valid URL
  Java-How to detect the presence of URL in a string.

有没有办法查看字符串是否是有效的URL?我正在使用MIDP库,MIDP中没有正则表达式。非常感谢任何帮助。

2 个答案:

答案 0 :(得分:14)

为什么不在字符串中构造java.net.URL并捕获可能抛出的异常?

String something;
try {
  URL url = new URL(something);
} catch (MalformedURLException e) {
  // it wasn't a URL
}

答案 1 :(得分:1)