如何在java中使用正则表达式获取URL?

时间:2014-08-03 12:02:57

标签: java url

我的网址与http://www.google.com/api/js/example类似,我想在java中使用正则表达式仅提取http:/www.google.com,我该怎么做?

1 个答案:

答案 0 :(得分:7)

只需使用URL

public static void main(String[] args) throws Exception {
    final URL url = new URL("http://www.google.com/api/js/example");
    System.out.println(url.getProtocol() + "://" + url.getHost());
}