如何使用相对路径获取URL


问题内容

我有一个网址:

URL url=new URL("http://www.abc.com/aa/bb/cc/file.html");

和相对路径:

String relativePath="../file2.html"; //maybe is "/file3.html"

我想http://www.abc.com/aa/bb/file2.html使用变量urlrelativePath

怎么做?


问题答案:
new URL(url, relativePath);