0

我需要获取链接的主 url,例如,而不是

https://stackoverflow.com/questions/ask

我只想要 https://stackoverflow.com/

我知道你可以使用 URI,但由于某种原因它不能很好地与我的程序一起使用,所以我需要一个替代方案,我用 uri 尝试了这个,但正如我所说我需要另一个解决方案(也许是正则表达式?)

URI uri = new URI("the url");
String domain = uri.getHost();
return domain.startsWith("www.") ? domain.substring(4) : domain;
4

1 回答 1

1

尽可能简单的是

String url="http://stackoverflow.com/questions/ask";
URI uri = null;
uri = new URI(url);
String host = uri.getHost();  
System.out.println(uri.getScheme()+"://"+host+"/"); 

结果:

http://stackoverflow.com/ 
于 2013-09-05T10:58:11.343 回答