Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I am looking to parse a URL to obtain a collection of the querystring parameters in Java. To be clear, I need to parse a given URL(or string value of a URL object), not the URL from a servlet request.

It looks as if the javax.servlet.http.HttpUtils.parseQueryString method would be the obvious choice, but it has been deprecated.

Is there an alternative method that I am missing, or has it just been deprecated without an equivalent replacement/enhanced function?

like image 329
Mads Hansen Avatar asked Oct 30 '08 00:10

Mads Hansen


3 Answers

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

like image 196
Mark St. John Avatar answered Oct 21 '22 00:10

Mark St. John


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.

like image 44
gizmo Avatar answered Oct 21 '22 00:10

gizmo


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.

like image 5
Vincent Ramdhanie Avatar answered Oct 21 '22 00:10

Vincent Ramdhanie