The difference between Java and. NET about URL Encode

Source: Internet
Author: User
Tags urlencode

In C #, Httputility.urlencode ("www+mzwu+com") encodes the result as www%2bmzwu%2bcom, and when interfacing with a Java-developed platform, the other party uses the URL encoding and then encrypts it MD5. URL-encoded strings are large (www%2bmzwu%2bcom)-written so that the encrypted string does not match the. NET platform,

Solution:

public string UrlEncode (String str) {    StringBuilder builder = new StringBuilder ();    foreach (char c in str)    {        if (Httputility.urlencode (c.tostring ()). Length > 1)        {            Builder. Append (Httputility.urlencode (c.tostring ()). ToUpper ());        }        else        {            Builder. Append (c);        }    }    Return builder. ToString ();}

  

The difference between Java and. NET about URL Encode

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.