博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
emoji表情引发的JNI崩溃
阅读量:6271 次
发布时间:2019-06-22

本文共 2679 字,大约阅读时间需要 8 分钟。

今天突然接到客服那边的反馈说,有玩家反馈进游戏后不久就崩溃了,我先是怀疑网络问题,因为一连接聊天成功后就挂了。之后用logcat抓日志,发现挂在jni那里了

JNI DETECTED ERROR IN APPLICATION: input is not valid Modified UTF-8: illegal start byte 0xf0

string: ''

in call to NewStringUTF

from void org.cocos2dx.lib.Cocos2dxRenderer.nativeRender()

 

调用JNI的NewStringUTF方法就挂了,然后让后台把聊天日志全部拉出来,另存为html放到mac机上查看。发现一个特殊的表情,如下图所示:

 

我先让后台的同事,把所有聊天信息清理干净,这时候设备重新登录进去没有问题了。所以确定问题就是这个NewStringUTF方法引起的(但部分设备上有问题,部分设备没问题。看了一下好像是Android5.0及以后的系统就有此问题),问了其它同事,发现他们之前遇到过并且处理了。

有二种方案:一种是升级NDK,另外一种是C++传给Java时使用byte[],Java里再把byte[]转成String,避免NewStringUTF导致的崩溃。

 

我用的是cocos2d-x 2.x版本,找到CCImage.cpp文件,修改getBitmapFromJava方法

 

bool getBitmapFromJava(const char *text, int nWidth, int nHeight, CCImage::ETextAlign eAlignMask, const char * pFontName, float fontSize) {
    JniMethodInfo methodInfo;     if (! JniHelper::getStaticMethodInfo(methodInfo, "org/cocos2dx/lib/Cocos2dxBitmap", "createTextBitmap",         "([BLjava/lang/String;IIII)V"))     {
        CCLOG("%s %d: error to get methodInfo", __FILE__, __LINE__);         return false;     }     /**create bitmap      * this method call Cococs2dx.createBitmap()(java code) to create the bitmap, the java code      * will call Java_org_cocos2dx_lib_Cocos2dxBitmap_nativeInitBitmapDC() to init the width, height      * and data.      * use this appoach to decrease the jni call number     */     int strLen = strlen(text);     jbyteArray byteArray = methodInfo.env->NewByteArray(strLen);     methodInfo.env->SetByteArrayRegion(byteArray, 0, strLen, reinterpret_cast
(text)); //        jstring jstrText = methodInfo.env->NewStringUTF(text);     jstring jstrFont = methodInfo.env->NewStringUTF(pFontName);     methodInfo.env->CallStaticVoidMethod(methodInfo.classID, methodInfo.methodID, byteArray,         jstrFont, (int)fontSize, eAlignMask, nWidth, nHeight); //        methodInfo.env->DeleteLocalRef(jstrText);     methodInfo.env->DeleteLocalRef(byteArray);     methodInfo.env->DeleteLocalRef(jstrFont);     methodInfo.env->DeleteLocalRef(methodInfo.classID);     return true; }

注释部分为原来的代码,将string替换为byte[]再传给Java即可,其它地方如果也遇到JNI崩溃的问题,也按上面进行修改即可。

符一个字符串与jbyteArray的互转函数

jbyteArray as_byte_array(unsigned char* buf, int len) {
    jbyteArray array = env->NewByteArray(len);     env->SetByteArrayRegion(array, 0, len, reinterpret_cast
(buf));     return array; }   unsigned char* as_unsigned_char_array(jbyteArray array) {
    int len = env->GetArrayLength(array);     unsigned char* buf = new unsigned char[len];     env->GetByteArrayRegion(array, 0, len, reinterpret_cast
(buf));     return buf; }
 

mysql 5.5之前仅支持3个字节,如果游戏中有留言等功能要存进数据库的记录,那么你就需要过滤这些字符了,不然就会插入数据报错。

 

更多阅读链接:

 

转载地址:http://mnvpa.baihongyu.com/

你可能感兴趣的文章
LeetCode题解(二)
查看>>
Mybatis通用Mapper
查看>>
文件磁盘命令(就该这么学6章内容)
查看>>
2016-207-19 随笔
查看>>
java的double类型如何精确到一位小数?
查看>>
看看国外的javascript题目,你能全部做对吗?
查看>>
ffmpeg 如何选择具有相同AVCodecID的编解码器 (AVCodec)
查看>>
真正解决 Windows 中 Chromium “缺少 Google API 密钥” 的问题
查看>>
Spring 之 AOP
查看>>
软件项目管理|期末复习(二)
查看>>
直接调用VS.net2005中的配置界面
查看>>
程序员的自我修养五Windows PE/COFF
查看>>
关于字符集,编码格式,大小端的简单总结
查看>>
js string 转 int Number()
查看>>
课堂练习:ex 4-20
查看>>
20155328 2016-2017-2 《Java程序设计》 第8周学习总结
查看>>
python操作redis--string
查看>>
echarts图表初始大小问题及echarts随窗口变化自适应
查看>>
Inherits、CodeFile、CodeBehind的区别
查看>>
创建一个SimpleDlg
查看>>