Hello Bastian, > I am using NameValuePairs to transfer some strings > to a server with the following content type: > > application/x-www-form-urlencoded > > My content change from "!" to "%12" > > Can I also use encoder/decoder for my strings or > is there a better way to transfer data correctly?
The content is transferred correctly. That's what x-www-form-urlencoded is all about: special characters are escaped as %xx sequences. Server-side APIs like the Servlet API will automatically decode that format. cheers, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
