I have a string like this " <person name="peter" ><\person>"
URL encoding
URLEncoder.encode(person.toString(),"UTF-8");
but the encoding is bad because for spaces make + insted of %20 and for = he gives other values can you guys help me?
|
This is exactly as specified in the If you need a
|
|||
|
|
Considering your comment I assume you want to decode the webservice answer.
will give you
as the value of |
|||||||
|
application/x-www-form-urlencoded-type encoding (see en.wikipedia.org/wiki/Percent-encoding). – axtavt Apr 19 '11 at 14:37