Does anyone have, or know of, a java class that I can use to manipulate query strings?
Essentially I\'d like a class that I can simply give a query string to and the
You can create a util method and use regular expression to parse it. A pattern like "[;&]" should suffice.