有人能帮助进行url解析拆分吗?
我有如下网址-
实际-https://www.facebook.com/group.php/gid=12345
预期-facebook /group.php/gid=12345
实际-https://www.Test.this.domain/testPath/
预期-https wwwtestthisdomain testpath
您可以使用java.net.URI
,如下所示:
URI uri = URI.create("https://www.facebook.com/group.php/gid=12345");
System.out.println(
uri.getPath() // prints: /group.php/gid=12345
);
System.out.println(
uri.getHost() // www.facebook.com
);