Java replaces the four-byte character ' \xf0\x9f\x98\x84\xf0\x9f ' solution??

Source: Internet
Author: User

/**     * Replace the four-byte character ' \xf0\x9f\x98\x84\xf0\x9f ' solution??     * @author Chenguiyong     * @data August 11, 2015 Morning 10:31:50     * @param content     * @return     */public    static String Removefourchar (String content) {        byte[] conbyte = Content.getbytes ();        for (int i = 0; i < conbyte.length; i++) {            if ([Conbyte[i] & 0xF8) = = 0xF0) {for                (int j = 0; j < 4; j+ +) {                                              conbyte[i+j]=0x30;                                     }                  i + = 3;            }        }        Content = new String (conbyte);        return Content.replaceall ("0000", "" ");    }

Results:
String title = "FF's van der Sar sub???????? Llfldakf;dsk. F???????????? DASLFJDSA;LFKJDSD ' J ' l ' F ' k ' d ' j ' sa ' l ' k ';        System.out.println (Test_common2.removefourchar (title) replaceall ("0000", "" "));        The FF's Van der Sar points Llfldakf;dsk. FDASLFJDSA;LFKJDSD ' J ' l ' F ' k ' d ' j ' sa ' l ' k





Java replaces the four-byte character ' \xf0\x9f\x98\x84\xf0\x9f ' solution??

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.