可能重复:
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中没有正则表达式。非常感谢任何帮助。
答案 0 :(得分:14)
为什么不在字符串中构造java.net.URL
并捕获可能抛出的异常?
String something;
try {
URL url = new URL(something);
} catch (MalformedURLException e) {
// it wasn't a URL
}
答案 1 :(得分:1)