如何在Java中获取父URL?
在Objective-C中,我用于-[NSURL URLByDeletingLastPathComponent]
获取父URL。在Java中这相当于什么?
回答:
我能想到的最短的代码段是这样的:
URI uri = new URI("http://www.stackoverflow.com/path/to/something");URI parent = uri.getPath().endsWith("/") ? uri.resolve("..") : uri.resolve(".")
以上是 如何在Java中获取父URL? 的全部内容, 来源链接: utcz.com/qa/406230.html