android显示系统表情很简单 但是在发送这一块却犯了老大难,在开发过程中需要将系统表情符号和表情抽出一套对应关系给服务器,但系统表情在输出的时候却乱码,这我就凌乱了,所以要将系统表情处理成一种标识符,发送到服务器。
我的解决方法,
1:unicode–系统表情:
character.tochars(unicode)
android系统制动识别成系统表情 如 “0x1f601” 处理后即可显示
2:系统表情–发送的标识符(重点)
public String Emoji2code(String str) {
StringBuilder buf = null;
long w1;
long w2;
int len = str.length();
for (int i = 0; i < len; i++) {
char codePoint = str.charAt(i);
char codePoint2=str.charAt(i);
if(i<len-1){
codePoint2 = str.charAt(i+1);
}
// //++i;
// if((codePoint<0xD800) && (codePoint >0xDFFF)){
//
// }
// if((codePoint >0xD800) && (codePoint <0xDBFF)){
//
// w1=(codePoint-0xD800);
// if((codePoint2 >0xDC00) && (codePoint2 <0xDFFF)){
// w2=(codePoint2-0xDC00);
// Log.w(TAG, " 10进制unicode : "+((w1<<10)|w2+0x10000), false, false);
// }
// }
if (buf == null) {
buf = new StringBuilder(str.length());
}
buf.append(Integer.toHexString(codePoint));
}
}
if (buf == null) {
return "";
} else {
return buf.toString();
}
}
本来可以直接直接转 本来以为将char直接转为int(转为16进制是表情unicode的utf16 下图的D83D DE01
)这样就结束了 不过为了和ios的统一,所以将utf16还原unicode编码(注释部分转为16进制就是了下图的 1F601)