我有这两个 URI:
http://www.google.de/blank.gif
http://www.google.de/sub/
http://www.google.de/sub/
我想要结果的相对路径http://www.google.de/blank.gif so
是../blank.gif
URI.relativize()
在这里不起作用:/
谢谢!
Apache URIUtils 应该可以工作。如果您不想引入外部库,这里有一个简单的方法实现,该方法应该正确解析java.net.URI
无法处理的情况下的相对 URI(即,基本 URI 路径不是子 URI 路径的前缀)。
public static URI relativize(URI base, URI child) {
// Normalize paths to remove . and .. segments
base = base.normalize();
child = child.normalize();
// Split paths into segments
String[] bParts = base.getPath().split("\\/");
String[] cParts = child.getPath().split("\\/");
// Discard trailing segment of base path
if (bParts.length > 0 && !base.getPath().endsWith("/")) {
bParts = Arrays.copyOf(bParts, bParts.length - 1);
}
// Remove common prefix segments
int i = 0;
while (i < bParts.length && i < cParts.length && bParts[i].equals(cParts[i])) {
i++;
}
// Construct the relative path
StringBuilder sb = new StringBuilder();
for (int j = 0; j < (bParts.length - i); j++) {
sb.append("../");
}
for (int j = i; j < cParts.length; j++) {
if (j != i) {
sb.append("/");
}
sb.append(cParts[j]);
}
return URI.create(sb.toString());
}
请注意,这并不强制 base 和 child 具有相同的方案和权限——如果您希望它处理一般情况,则必须添加它。这可能不适用于所有边界情况,但它适用于您的示例。
我认为您可以使用 Apache URIUtils
解决
公共静态 URI 解析(URI baseURI,URI 引用)
Resolves a URI reference against a base URI. Work-around for bugs in java.net.URI (e.g. )
Parameters:
baseURI - the base URI
reference - the URI reference
Returns:
the resulting URI
例子: