JNI throws java exception

//java异常全类名
const std::string CLS_JNIEXCEPTION = "cn/wisenergy/pi/workflow/JNIException" ;
 
//在JNI中实现抛java异常
void ThrowJNIException(JNIEnv *env, const std::string& errorMsg)
{
     jclass e_cls = env->FindClass(CLS_JNIEXCEPTION.c_str());
     if (e_cls==NULL)
     {
         std::cerr << "find class:" << CLS_JNIEXCEPTION << " error!" << std::endl;
         return ;
     }
     int r = env->ThrowNew(e_cls,errorMsg.c_str());
     std::cerr << "throw result:" << r << std::endl;
}

C++端,处理异常后,一定记得要return。否则程序会继续进行。也许在后面的代码中会有异常产生。强烈建议使用如下风格代码

 

cpp exception in JNI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
void testException()
{
     try
     {
         doSomeThing //this line throws some exception.
      } catch (std::exception & e)
      {
         std::string exceptionClass= "java/lang/NullPointerException" ;
         JNI::ThrowException(env,exceptionClass,e.what());
         return ;
      }
      doOtherThing  //this line maybe throws some exception.
 
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值