CopyPastor

Detecting plagiarism made easy.

Score: 0.8347973270773609; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2015-03-27
by Zeeshan Khan

Original Post

Original - Posted on 2015-01-12
by Omji Mehrotra



            
Present in both answers; Present only in the new answer; Present only in the old answer;

While sending such kind of special characters to server you need to encode such input with the help of URLEncoder.encode(your_input, "utf-8") and while receiving such kind of data first of all you need to decode it with the help of URLDecoder.decode(your_data, "utf-8")
While sending such kind of special characters to server you need to encode such input with the help of **URLEncoder.encode(your_input, "utf-8")** and while receiving such kind of data first of all you need to decode it with the help of **URLDecoder.decode(your_data, "utf-8")**
I have also faced such kind of problem, so I followed encoding and decoding and resolved the problem. I think this will help you too.

        
Present in both answers; Present only in the new answer; Present only in the old answer;