Emoji emoji not supported by Java processing database

Source: Internet
Author: User

The general database encoding is UTF8,UTF8 does not support the storage of emoticons, when the nickname with the expression will appear garbled, there are two ways to solve:

1.mysql database upgrade to more than 5.5 version, UTF8 to UTF8MB4,UTF8MB4 characters can be up to 4 bytes, can store emoticons, restart the database server, this method may be invalidated;

2. Filter out emoji in Java code, simple and efficient, below is the tool class that filters out emoticons:

ImportJava.util.regex.Matcher;ImportJava.util.regex.Pattern; Public classEmojiutil { Public Staticstring Replace (string input) {if(!stringutil.isempty (input)) {String Patternstr= "[^\\u0000-\\uffff]"; Pattern Pattern= Pattern.compile (patternstr, Pattern.unicode_case |pattern.case_insensitive); Matcher Matcher=pattern.matcher (input); Input= Matcher.replaceall (""); }        returninput; }}

Emoji emoji not supported by Java processing database

Related Article

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.