标签: android
可能重复: How to detect the presence of URL in a string
有没有办法找出用户输入的文字是网站网址。
例如,如果用户输入
www.yahoo.com www.google.fr
我们可以检测到它是一个url String吗?
谢谢
答案 0 :(得分:13)
try { URL url = new URL("url_string"); } catch (MalformedURLException e) { /* invalid URL */ }
答案 1 :(得分:0)
使用java.net.URL检测字符串中url的存在。
java.net.URL
请参阅以下主题:
How to detect the presence of URL in a string