up vote 58 down vote favorite
12
share [g+] share [fb]

J2EE has ServletRequest.getParameterValues().

On non-EE platforms, URL.getQuery() simply returns a string.

What's the normal way to properly parse the query string in a URL when not on J2EE?


<rant>

It is popular in the answers to try and make your own parser. This is very interesting and exciting micro-coding project, but I cannot say that it is a good idea :(

The code snippets below are generally flawed or broken, btw. Breaking them is an interesting exercise for the reader. And to the hackers attacking the websites that use them.

Parsing query strings is a well defined problem but reading the spec and understanding the nuances is non-trivial. It is far better to let some platform library coder do the hard work, and do the fixing, for you!

</rant>

link|improve this question

77% accept rate
Could you post a sample URL, what you are getting from getQuery(), and what you want to get as output? – Thomas Owens Nov 3 '09 at 13:20
1  
Are you wanting to do this from a servlet or a JSP page? I need some clarification before I answer. – ChadNC Nov 3 '09 at 13:35
1  
Do you also need to parse POST parameters? – Thilo Nov 3 '09 at 13:54
2  
Even if you are on J2EE (or on SE with selected EE packages added via OSGi, like me), this question could make sense. In my case, the query strings / url-encoded POST bodies are processed by a part of the system that's intentionally agnostic to stuff like ServletRequest. – Hanno Fietz May 19 '11 at 10:22
4  
Upvoted for <rant />! – Damian Nowak Jul 28 '11 at 13:44
show 2 more comments
feedback

13 Answers

up vote 32 down vote accepted

On Android, the Apache libraries provide a Query parser:

http://developer.android.com/reference/org/apache/http/client/utils/URLEncodedUtils.html and http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/utils/URLEncodedUtils.html

link|improve this answer
This helped me too, thanks! – alexanderblom Mar 19 '10 at 21:52
4  
This is available in the apache http client library, not only on Android. Btw, the link to apache was changed. Latest is: hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/… – Cristian Vrabie Dec 16 '10 at 13:14
3  
Annoyingly URLEncodedUtils.parse() returns a List that you would then have to loop through to find the value for a specific key. It would be much nicer if it returned a Map like in BalusC's answer. – Asaph Apr 27 '11 at 22:15
1  
@Hanno Fietz you mean you trust these alternatives? I know they are buggy. I know pointing out the bugs I see will only encourage people to adopt 'fixed' versions, rather than themselves look for the bugs I've overlooked. – Will May 19 '11 at 10:57
2  
I imagine parse returns a list so that it maintain positional ordering and more easily allows duplicate entries. – dhaag23 Oct 27 '11 at 18:41
show 5 more comments
feedback

For a servlet or a JSP page you can get querystring key/value pairs by using request.getParameter("paramname")

String name = request.getParameter("name");

There are other ways of doing it but that's the way I do it in all the servlets and jsp pages that I create.

link|improve this answer
1  
HttpServletRequest is part of J2EE which he doesn't have. Also using getParamter() is not really parsing. – Mr. Shiny and New 安宇 Nov 3 '09 at 14:48
2  
Please take the time to read the comment in which I asked for clarification of his question. This answer is in response to his answer to that comment in which he stated, "I'm trying to do this on Android, but all answers on all platforms would be useful answers that might give pointers (also to others who might come across this question) so don't hold back!" I answered his question based off of that comment. If you don't have anything useful to add, don't add anything – ChadNC Nov 3 '09 at 14:55
1  
Don't be too upset. "This doesn't answer the question" is useful to add, IMO. – Mr. Shiny and New 安宇 Nov 3 '09 at 15:08
feedback

Here is BalusC's answer, but it compiles and returns results:

public static Map<String, List<String>> getUrlParameters(String url)
        throws UnsupportedEncodingException {
    Map<String, List<String>> params = new HashMap<String, List<String>>();
    String[] urlParts = url.split("\\?");
    if (urlParts.length > 1) {
        String query = urlParts[1];
        for (String param : query.split("&")) {
            String pair[] = param.split("=");
            String key = URLDecoder.decode(pair[0], "UTF-8");
            String value = "";
            if (pair.length > 1) {
                value = URLDecoder.decode(pair[1], "UTF-8");
            }
            List<String> values = params.get(key);
            if (values == null) {
                values = new ArrayList<String>();
                params.put(key, values);
            }
            values.add(value);
        }
    }
    return params;
}
link|improve this answer
feedback

On Android:

Uri uri=Uri.parse(url_string);
uri.getQueryParameter("para1");
link|improve this answer
note that this uses the Uri class and not the URI class (Uri is part of android.net, while URI is part of java.net) – Marius Jan 5 at 9:38
feedback

If you have jetty (server or client) libs on your classpath you can use the jetty util classes (see javadoc), e.g.:

import org.eclipse.jetty.util.*;
URL url = new URL("www.example.com/index.php?foo=bar&bla=blub");
MultiMap<String> params = new MultiMap<String>();
UrlEncoded.decodeTo(url.getQuery(), params, "UTF-8");

assert params.getString("foo").equals("bar");
assert params.getString("bla").equals("blub");
link|improve this answer
feedback

Parsing the query string is a bit more complicated than it seems, depending on how forgiving you want to be.

First, the query string is ascii bytes. You read in these bytes one at a time and convert them to characters. If the character is ? or & then it signals the start of a parameter name. If the character is = then it signals the start of a paramter value. If the character is % then it signals the start of an encoded byte. Here is where it gets tricky.

When you read in a % char you have to read the next two bytes and interpret them as hex digits. That means the next two bytes will be 0-9, a-f or A-F. Glue these two hex digits together to get your byte value. But remember, bytes are not characters. You have to know what encoding was used to encode the characters. The character é does not encode the same in UTF-8 as it does in ISO-8859-1. In general it's impossible to know what encoding was used for a given character set. I always use UTF-8 because my web site is configured to always serve everything using UTF-8 but in practice you can't be certain. Some user-agents will tell you the character encoding in the request; you can try to read that if you have a full HTTP request. If you just have a url in isolation, good luck.

Anyway, assuming you are using UTF-8 or some other multi-byte character encoding, now that you've decoded one encoded byte you have to set it aside until you capture the next byte. You need all the encoded bytes that are together because you can't url-decode properly one byte at a time. Set aside all the bytes that are together then decode them all at once to reconstruct your character.

Plus it gets more fun if you want to be lenient and account for user-agents that mangle urls. For example, some webmail clients double-encode things. Or double up the ?&= chars (for example: http://yoursite.com/blah??p1==v1&&p2==v2). If you want to try to gracefully deal with this, you will need to add more logic to your parser.

link|improve this answer
That does not explain how to parse or retrieve querystring parameter values – ChadNC Nov 3 '09 at 14:58
Right, but a bit cumbersome. For that we already have URLDecoder. – BalusC Nov 3 '09 at 15:18
1  
@ChadNC: the third sentence tells you how to parse: read in one byte at a time and convert to chars. The fourth sentence warns you of special chars. Etc. Maybe you didn't read the answer? – Mr. Shiny and New 安宇 Nov 3 '09 at 15:18
@BalusC: URLDecoder works but it has some failure modes if you are trying to be more lenient in what kind of URL you accept. – Mr. Shiny and New 安宇 Nov 3 '09 at 15:19
1  
Agree with @Mr.ShinyAndNew parse query param is not easy. I'm supporting FIQL and this become a REAL pain in the ass. E.g: yoursite.com/blah??p1==v1&&p2==v2,p2==v3;p2==v4 – Castanho Jun 20 '11 at 22:01
feedback

Just for reference, this is what I've ended up with (based on URLEncodedUtils, and returning a Map).

Features:

  • it accepts the query string part of the url (you can use request.getQueryString())
  • an empty query string will produce an empty Map
  • a parameter without a value (?test) will be mapped to an empty List<String>

Code:

public static Map<String, List<String>> getParameterMapOfLists(String queryString) {
    Map<String, List<String>> mapOfLists = new HashMap<String, List<String>>();
    if (queryString == null || queryString.length() == 0) {
        return mapOfLists;
    }
    List<NameValuePair> list = URLEncodedUtils.parse(URI.create("http://localhost/?" + queryString), "UTF-8");
    for (NameValuePair pair : list) {
        List<String> values = mapOfLists.get(pair.getName());
        if (values == null) {
            values = new ArrayList<String>();
            mapOfLists.put(pair.getName(), values);
        }
        if (pair.getValue() != null) {
            values.add(pair.getValue());
        }
    }

    return mapOfLists;
}

A compatibility helper (values are stored in a String array just as in ServletRequest.getParameterMap()):

public static Map<String, String[]> getParameterMap(String queryString) {
    Map<String, List<String>> mapOfLists = getParameterMapOfLists(queryString);

    Map<String, String[]> mapOfArrays = new HashMap<String, String[]>();
    for (String key : mapOfLists.keySet()) {
        mapOfArrays.put(key, mapOfLists.get(key).toArray(new String[] {}));
    }

    return mapOfArrays;
}
link|improve this answer
feedback

On Android, you can use the Uri.parse static method of the android.net.Uri class to do the heavy lifting. If you're doing anything with URIs and Intents you'll want to use it anyways.

link|improve this answer
feedback

I don't think there is one in JRE. You can find similar functions in other packages like Apache HttpClient. If you don't use any other packages, you just have to write your own. It's not that hard. Here is what I use,

public class QueryString {

 private Map<String, List<String>> parameters;

 public QueryString(String qs) {
  parameters = new TreeMap<String, List<String>>();

  // Parse query string
     String pairs[] = qs.split("&");
     for (String pair : pairs) {
            String name;
            String value;
            int pos = pair.indexOf('=');
            // for "n=", the value is "", for "n", the value is null
         if (pos == -1) {
          name = pair;
          value = null;
         } else {
       try {
        name = URLDecoder.decode(pair.substring(0, pos), "UTF-8");
              value = URLDecoder.decode(pair.substring(pos+1, pair.length()), "UTF-8");            
       } catch (UnsupportedEncodingException e) {
        // Not really possible, throw unchecked
           throw new IllegalStateException("No UTF-8");
       }
         }
         List<String> list = parameters.get(name);
         if (list == null) {
          list = new ArrayList<String>();
          parameters.put(name, list);
         }
         list.add(value);
     }
 }

 public String getParameter(String name) {        
  List<String> values = parameters.get(name);
  if (values == null)
   return null;

  if (values.size() == 0)
   return "";

  return values.get(0);
 }

 public String[] getParameterValues(String name) {        
  List<String> values = parameters.get(name);
  if (values == null)
   return null;

  return (String[])values.toArray(new String[values.size()]);
 }

 public Enumeration<String> getParameterNames() {  
  return Collections.enumeration(parameters.keySet()); 
 }

 public Map<String, String[]> getParameterMap() {
  Map<String, String[]> map = new TreeMap<String, String[]>();
  for (Map.Entry<String, List<String>> entry : parameters.entrySet()) {
   List<String> list = entry.getValue();
   String[] values;
   if (list == null)
    values = null;
   else
    values = (String[]) list.toArray(new String[list.size()]);
   map.put(entry.getKey(), values);
  }
  return map;
 } 
}
link|improve this answer
What's the way with the apache classes? – Will Nov 3 '09 at 18:18
1  
You can use parse() method: hc.apache.org/httpcomponents-client/httpclient/apidocs/org/… – ZZ Coder Nov 3 '09 at 22:01
1  
Please put the apache commons link in its own answer so I can vote it up. – itsadok Nov 5 '09 at 7:24
feedback

Based on the answer from BalusC, i wrote some example-Java-Code:

    if (queryString != null)
    {
        final String[] arrParameters = queryString.split("&");
        for (final String tempParameterString : arrParameters)
        {
            final String[] arrTempParameter = tempParameterString.split("=");
            if (arrTempParameter.length >= 2)
            {
                final String parameterKey = arrTempParameter[0];
                final String parameterValue = arrTempParameter[1];
                //do something with the parameters
            }
        }
    }
link|improve this answer
feedback
public static Map <String, String> parseQueryString (final URL url)
        throws UnsupportedEncodingException
{
    final Map <String, String> qps = new TreeMap <String, String> ();
    final StringTokenizer pairs = new StringTokenizer (url.getQuery (), "&");
    while (pairs.hasMoreTokens ())
    {
        final String pair = pairs.nextToken ();
        final StringTokenizer parts = new StringTokenizer (pair, "=");
        final String name = URLDecoder.decode (parts.nextToken (), "ISO-8859-1");
        final String value = URLDecoder.decode (parts.nextToken (), "ISO-8859-1");
        qps.put (name, value);
    }
    return qps;
}
link|improve this answer
feedback

You say "Java" but "not J2EE". Do you mean you are using JSP and/or servlets but not a full J2EE stack? If that's the case, then you should still have request.getParameter() available to you.

If you mean you are writing Java but you are not writing JSPs nor servlets, or that you're just using Java as your reference point but you're on some other platform that doesn't have built-in parameter parsing ... Wow, that just sounds like an unlikely question, but if so, the principle would be:

xparm=0
word=""
loop
  get next char
  if no char
    exit loop
  if char=='='
    param_name[xparm]=word
    word=""
  else if char=='&'
    param_value[xparm]=word
    word=""
    xparm=xparm+1
  else if char=='%'
    read next two chars
    word=word+interpret the chars as hex digits to make a byte
  else
    word=word+char

(I could write Java code but that would be pointless, because if you have Java available, you can just use request.getParameters.)

link|improve this answer
watch out for the character encoding when url-decoding the hex digits. – Mr. Shiny and New 安宇 Nov 3 '09 at 15:17
It's Android, hence Java but not J2EE. – Andrzej Doyle Nov 3 '09 at 15:19
I forgot to mention: You also need to check for "+", which should be translated to a space. Embedded spaces are illegal in a query string. – Jay Nov 3 '09 at 17:42
feedback

Your Answer

 
or
required, but never shown

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