java后台,接收到emoji表情内容后,存储在mysql存储不了的问题,emoji转义
Posted LMD酱油飘过
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java后台,接收到emoji表情内容后,存储在mysql存储不了的问题,emoji转义相关的知识,希望对你有一定的参考价值。
<!-- maven包 -->
<!-- 表情转换 --> <dependency> <groupId>com.github.binarywang</groupId> <artifactId>java-emoji-converter</artifactId> <version>0.1.1</version> </dependency>
// 引用方式 EmojiConverter emojiConverter = EmojiConverter.getInstance(); String emojiStr = emojiConverter.toUnicode("包含emoji表情的字符串");
toAlias :
convert emoji string with unicode/softbank to strings with aliases
tohtml:
convert emoji string with unicode/softbank to strings with html code
toUnicode:
convert string with softbank/alias emoji to strings with unicode
toAlias和 toHtml转义后,把内容显示在手机端的效果:
toUnicode转义后再手机端显示的效果:
以上是关于java后台,接收到emoji表情内容后,存储在mysql存储不了的问题,emoji转义的主要内容,如果未能解决你的问题,请参考以下文章