Given two absolue paths, e.g.
/var/data/stuff/xyz.dat
/var/data
How can one create a relative path that uses the second path as its base? In the example above, the result should be: ./stuff/xyz.dat
|
2
|
|
|
|
|
|
It's a little roundabout, but why not use URI? It has a relativize method which does all the necessary checks for you.
|
||
|
|
The bug referred to in @Peter Mueller's answer is addressed by URIUtils in Apache HttpComponents
|
||
|
|
|
|
Matt B's solution gets the number of directories to backtrack wrong -- it should be the length of the base path minus the number of common path elements, minus one (for the last path element, which is either a filename or a trailing Also, it needs an All these solutions lack the ability to handle paths that cannot be relativized to one another because they have incompatible roots, such as I spent far longer on this than I intended, but that's okay. I actually needed this for work, so thank you to everyone who has chimed in, and I'm sure there will be corrections to this version too!
And here are tests to cover several cases:
|
|||
|
|
|
|
My version is loosely based on Matt and Steve's versions:
|
|||
|
|
|
|
When using java.net.URI.relativize you should be aware of the following bug: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6226081 Which essentially means java.net.URI.relativize will not create ".."'s for you. |
||
|
|
|
Actually my other answer didn't work if the target path wasn't a child of the base path. This should work.
|
||
|
|
|
|
I'm assuming you have fromPath (an absolute path for a folder), and toPath (an absolute path for a folder/file), and your're looking for a path that with represent the file/folder in toPath as a relative path from fromPath (your current working directory is fromPath) then something like this should work:
public static String getRelativePath(String fromPath, String toPath) {
// This weirdness is because a separator of '/' messes with String.split()
String regexCharacter = File.separator;
if (File.separatorChar == '\\') {
regexCharacter = "\\\\";
}
String[] fromSplit = fromPath.split(regexCharacter);
String[] toSplit = toPath.split(regexCharacter);
// Find the common path
int common = 0;
while (fromSplit[common].equals(toSplit[common])) {
common++;
}
StringBuffer result = new StringBuffer(".");
// Work your way up the FROM path to common ground
for (int i = common; i
|
|||
|
|
|
|
Psuedo-code:
|
||
|
|
|
|
If you know the second string is part of the first:
or if you really want the period at the beginning as in your example:
|
||||||
|