JAX-RS / Jersey client: UM-encoded unmarshall pair name / value pairs

I wondered if anyone knew how best to cancel a response from a JAX-RS / Jersey client that returns a response from PayPal. The answer is a URI encoded in name / value pairs. I ask, because I already wrote code that cancels google geocode geocoding, given the class hierarchy, it will automatically convert the JSON response into objects, but, alas, I could not do this with this simpler problem.

TIMESTAMP=2011%2d06%2d03T13%3a22%3a17Z&CORRELATIONID=f708c43c1d078&ACK=Success&VERSION=56%

Thanks for any help.

+3
source share
1 answer

You will need to do something like this: Parsing query strings on Android .

+1
source

All Articles