如何在Java中获取父URL?

时间:2012-04-15 02:59:51

标签: java url

在Objective-C中,我使用-[NSURL URLByDeletingLastPathComponent]来获取父URL。在Java中,这相当于什么?

4 个答案:

答案 0 :(得分:27)

我能想到的最短代码片段是:

URI uri = new URI("http://www.stackoverflow.com/path/to/something");

URI parent = uri.getPath().endsWith("/") ? uri.resolve("..") : uri.resolve(".")

答案 1 :(得分:4)

我不知道库功能只需一步即可完成。但是,我相信下面的(无可否认的)繁琐的代码完成了你之后的事情(你可以将它包装在你自己的实用程序函数中):

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;

public class URLTest
{
    public static void main( String[] args ) throws MalformedURLException
    {
        // make a test url
        URL url = new URL( "http://stackoverflow.com/questions/10159186/how-to-get-parent-url-in-java" );

        // represent the path portion of the URL as a file
        File file = new File( url.getPath( ) );

        // get the parent of the file
        String parentPath = file.getParent( );

        // construct a new url with the parent path
        URL parentUrl = new URL( url.getProtocol( ), url.getHost( ), url.getPort( ), parentPath );

        System.out.println( "Child: " + url );
        System.out.println( "Parent: " + parentUrl );
    }
}

答案 2 :(得分:1)

这是一个非常简单的解决方案,这是我用例中的最佳方法:

private String getParent(String resourcePath) {
    int index = resourcePath.lastIndexOf('/');
    if (index > 0) {
        return resourcePath.substring(0, index);
    }
    return "/";
}

我创建了简单的函数,我的灵感来自File::getParent的代码。在我的代码中,Windows上的反斜杠没有问题。我假设resourcePath是URL的资源部分,没有协议,域和端口号。 (例如/articles/sport/atricle_nr_1234

答案 3 :(得分:1)

Guava库提供的简单解决方案。

代码:

URL url = new URL("https://www.ibm.watson.co.uk");
String host = url.getHost();

InternetDomainName parent = InternetDomainName.from(host).parent(); // returns ibm.watson.co.uk
System.out.println("Immediate ancestor: "+parent);


ImmutableList<String> parts = InternetDomainName.from(host).parts(); 
System.out.println("Individual components:  "+parts);


InternetDomainName name = InternetDomainName.from(host).topPrivateDomain(); // watson.co.uk
System.out.println("Top private domain - " + name);

输出:

Immediate ancestor: ibm.watson.co.uk

Individual components:  [www, ibm, watson, co, uk]

Top private domain - watson.co.uk

供参考: https://guava.dev/releases/snapshot/api/docs/com/google/common/net/InternetDomainName.html

需要依赖项:

https://mvnrepository.com/artifact/com.google.guava/guava

我正在使用19.0版

<dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
</dependency>

此类 InternetDomainName 提供了更多相关功能。