Alternative to deprecated javax.servlet.http.HttpUtils.parseQueryString?

Use org.apache.http.client.utils.URLEncodedUtils.html#parse(org.apache.http.HttpEntity)


I think the idea is to use the HttpServletRequest instead. There is the getParameterMap(), getParameterNames() and getParameterValues() methods to start.

There is also the getParameter(String paramname) method to get the value of a specific method.

These make no distinction between querystring parameters and form parameters though so if your intention was to look for a querystring in aparticular then I guess this wouldn't help.


Well, as you mention that the URL does not come from a servlet request, the right answer is, as usual, it depends.

The problem with query part of an url is that there is no clear specification about how to handle parameters duplication.

For example, consider an url like this one:

http://www.example.com?param1=value1&param2=value2&param1=value3

What do you expect as a value for param1? the first value, the last one, an array? The issue is that, according to the specs, all these answers are valid and server vendor are free to support one of these or another. Some use the param1[] notation to indicate that it has to be treated as an array, but again, this is not a unified solution.

So the "best" solution is to know how your destination handle parameters, and mimic the behaviour with a self-made utility class.