JAVA:MD5 Encryption Chinese & Note coding

Source: Internet
Author: User

Today, using Java's MD5 to encrypt a string (containing some Chinese), encountered problems, baffled.

After a search on the internet, only to know that the problem is [coding].

Previously in the ASP with MD5 encryption, understand the gb2312 and UTF-8 encoding, MD5 encryption results are not the same.

I didn't expect Java to have a similar problem, but the solution was simple:

The original code:

1 alg.update(txt.getBytes(encoding));

Just change to:

12345678 try        {            alg.update(txt.getBytes(encoding)); //        }        catch(UnsupportedEncodingException e)        {            alg.update(txt.getBytes());        }

 

2013-11-07

JAVA:MD5 Encryption Chinese & Note coding

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.