Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Provided I have a java.net.URL object, pointing to let's say

http://mydomain.com/myItems or http://mydomain.com/myItems/

Is there some helper somewhere to append some relative URL to this? For instance append ./myItemId or ItemId to get : http://mydomain.com/myItems/myItemId

share|improve this question
possible duplicate of Building an absolute URL from a relative URL in Java servlet – Don Roby Sep 21 '11 at 10:15

1 Answer

URL has a constructor that takes a base URL and a String spec.

Alternatively, java.net.URI adheres more closely to the standards, and has a resolve method to do the same thing. Create a URI from your URL using URL.toURI.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.