Try operating winth the class URI instead of the URL.
To get the URI from your URL:
java.net.URI anURI=url.toUri();
Then, to resolve the relative URI:
URI resultURI=anURI.resolve(relativePath);
And at last, to get an URL type use de method toUrl() of the URI result variable, and you've got it.