给你两条路径,一条是原始路径,另一条是cd
命令的参数。
例如:
users/documents
和stackOverFlow
应该返回users/documents/stackOverFlow
和
users/documents
和../stackOverFlow
应该返回users/stackOverFlow
和
users/documents/test
和../../stackOverFlow
应该返回users/stackOverFlow
我们如何实施这样的方法
imitateCDCommand
有两个参数str1
和str2
并返回目标路径。
答案 0 :(得分:0)
import java.io.File;
import java.io.IOException;
// ...
public static String imitateCDCommand(dir1, dir2) throws IOException {
File file1 = new File(dir1);
File file2 = new File(file1, dir2);
return file2.getCanonicalPath();
}