Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to do a few very simple URL manipulations in Java. Like get the value for a parameter in the query, or update it, ... I was expecting to find a simple utility class doing that in the commons-lang package, but no. I know it is a simple problem, but if there is something already written, why do it again ? Do you know of any ?

I would like to have at least the following capabilities :

String myUrl = "http://www.example.com/tes.html?toto=1&titi=2";

// get the value of a parameter
String parameterValue = UrlUtils.getParameterValue(myUrl, "toto");
Assert.equals(parameterValue, "1");

// update a parameter
String newUrl = UrlUtils.updateParameter(myUrl, "toto", 3);
parameterValue = UrlUtils.getParameterValue(myUrl, "toto");
Assert.equals(parameterValue, "3");

Ideally, it would take care of all encoding related issues, and work with java.net.Url as well as with Strings.

Thanks for your help !

share|improve this question

3 Answers

up vote 5 down vote accepted

I think what you want is called a query string parser instead of an url manipulator and here's one: http://ostermiller.org/utils/CGIParser.java.html

share|improve this answer

Apache's httpcomponents library has a URL decoder: http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/utils/URLEncodedUtils.html

Httpcomponents is the successor to commons http client.

share|improve this answer

Take a look at Commons Http Client. I'm not sure if there are any simple URL-handling classes/methods though.

(It wouldn't make sense for this type of functionality to be in commons-lang anyway - since this isn't really related to the language of Java itself).

share|improve this answer
1  
No, there is no query string parser in httpclient. – Vinko Vrsalovic Oct 20 '08 at 14:40

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.