The static method format in the URLEncodedUtils should be able to help you with this: http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/org/apache/http/client/utils/URLEncodedUtils.html#format(java.util.List, java.lang.String)
Bill- On Tue, Sep 6, 2011 at 6:31 PM, Patrick Lightbody <[email protected]> wrote: > I need to build up some GET query parameters dynamically (it's for an API > wrapper). Is there some nice helper API that can let me just specify the > parameters as simple name/value pairs and it'll turn it in to a nice query > parameter string? > > In 3.x there was method.setQueryString()[1] but I can't find an equivalent. > > Thanks! > > Patrick > > [1] > http://stackoverflow.com/questions/217070/how-do-i-add-query-parameters-to-a-getmethod-using-java-commons-httpclient > > > > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
