Reputation: 1434
Hey guys i have edit text in my application
User can type any of the special characters like @#$%^&* and obviously make smileys
I have to post this message to server by appending the messsage in url
but i have exp that # and & are not recognised
Thanks in advance
Upvotes: 0
Views: 725
Reputation: 27421
you can use URLEncoder to encode your string before attaching to the url.
Upvotes: 1