Url encoding issue with Jersey Client
问题 I need to make a service call such as this: http://myservice.com/path?var1=value1&var2=value2 The issue I have is value1 and value2 ends up getting encoded, and this makes the service call fail. For example, value1 is something like "a=b&b=c;2&&="... it contains special characters, basically. I am guessing that this is an issue for the service to fix - to properly handle decoding encoded characters, which I do not think it is currently doing. Here is a sample of how I am making these requests