2012-10-28 120 views
3

我想從C++代碼編寫一個相當基本的JNI調用。jni代碼中的FindClass崩潰JVM

JavaVM *jvm; 
JNIEnv *env; 
JavaVMInitArgs vm_args; 
JavaVMOption options[2]; 

// Get the default initialization arguments and set the class 
// path. 
JNI_GetDefaultJavaVMInitArgs(&vm_args); 
options[0].optionString = "-Djava.class.path=./hbase-1.0-SNAPSHOT.jar" 
options[1].optionString = "-verbose:jni"; 
vm_args.nOptions = 2; 
vm_args.version = JNI_VERSION_1_6; 
vm_args.options = options; 


// Load and initialize a Java VM, return a JNI interface 
// pointer in env. 
long result = JNI_CreateJavaVM(&jvm, (void **)&env, &vm_args); 
if (result == JNI_ERR) { 
    LOG(ERROR) << "Failed to create a JVM"; 
    return false; 
} 

jclass cls = env->FindClass("com/scaligent/falcon/hbase/HFileJniReader"); 

我的代碼在FindClass中崩潰。奇怪的是,我在類中有一個靜態塊,它將消息打印在靜態塊中。我在這裏發佈了幾行錯誤。 我無法弄清楚如何調試或解決這個問題。

[Dynamic-linking native method java.lang.Package.getSystemPackage0 ... JNI] 
[Dynamic-linking native method java.util.jar.JarFile.getMetaInfEntryNames ... JNI] 
[Dynamic-linking native method java.lang.ClassLoader.defineClass1 ... JNI] 
[Dynamic-linking native method java.io.FileOutputStream.writeBytes ... JNI] 
Starting static block 
[Dynamic-linking native method java.util.zip.Inflater.getBytesWritten ... JNI] 
[Dynamic-linking native method sun.reflect.NativeMethodAccessorImpl.invoke0 ... JNI] 
[Dynamic-linking native method java.security.AccessController.doPrivileged ... JNI] 
[Dynamic-linking native method java.lang.Class.isAssignableFrom ... JNI] 
[Dynamic-linking native method java.lang.System.identityHashCode ... JNI] 
[Dynamic-linking native method java.util.zip.Inflater.end ... JNI] 
[Dynamic-linking native method java.util.zip.ZipFile.close ... JNI] 
[Dynamic-linking native method java.util.TimeZone.getSystemTimeZoneID ... JNI] 
[Dynamic-linking native method sun.nio.fs.UnixNativeDispatcher.init ... JNI] 
[Dynamic-linking native method sun.nio.fs.UnixNativeDispatcher.getcwd ... JNI] 
[Dynamic-linking native method sun.nio.fs.UnixNativeDispatcher.realpath0 ... JNI] 
[Dynamic-linking native method java.io.UnixFileSystem.getLength ... JNI] 
[Dynamic-linking native method java.util.ResourceBundle.getClassContext ... JNI] 
[Dynamic-linking native method sun.reflect.ConstantPool.getUTF8At0 ... JNI] 
[Dynamic-linking native method java.lang.reflect.Proxy.defineClass0 ... JNI] 
[Dynamic-linking native method java.lang.Class.isInstance ... JNI] 
12/10/28 02:08:54 WARN conf.Configuration: fs.default.name is deprecated. Instead, use fs.defaultFS 
ending static block 
# 
# A fatal error has been detected by the Java Runtime Environment: 
# 
# SIGSEGV (0xb) at pc=0x000000000042f9e3, pid=7057, tid=140108980991808 
# 
# JRE version: 7.0_04-b20 
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.0-b21 mixed mode linux-amd64 compressed oops) 
# Problematic frame: 
# C [hfile_jni_reader_test+0x2f9e3] [email protected]@GLIBC_2.2.5+0x2f9e3 
# 
# Core dump written. Default location: /home/amit/git2/scaligent/falcon/hbase/core or core.7057 
# 
# An error report file with more information is saved as: 
# /home/amit/git2/scaligent/falcon/hbase/hs_err_pid7057.log 
# 
# If you would like to submit a bug report, please visit: 
# http://bugreport.sun.com/bugreport/crash.jsp 
# The crash happened outside the Java Virtual Machine in native code. 
# See problematic frame for where to report the bug. 
# 
+0

你是否找到了解決方案? – peeyush

+0

它似乎jni拋出通常它會捕獲的信號,但在gdb中,它會導致gdb報告崩潰。我的代碼有其他的錯誤,我無法捕捉,因爲我依靠gdb進行調試。 –

+0

@amit:做你的C++可執行文件使用jar也可以在你的java代碼庫中使用其他第三方jar或其他依賴jar,然後你需要指定那裏的路徑,因爲你的規範我只能找到這個問題。 – user1808932

回答

0

我後來意識到jni拋出的信號通常會捕獲,但在gdb中,它會導致gdb報告崩潰。我的代碼有其他非常普通的錯誤,我無法捕捉,因爲我依靠gdb進行調試。

1

這可能是由於指針指向已被刪除的對象。檢查你的本地代碼。

+0

不確定你的意思。在這個背景下的所有本地代碼都存在於這個問題中。我在這裏沒有刪除任何東西。 –

+0

已刪除表示內存釋放該對象。 –

+0

我明白:)我所說的是上面的本地代碼不會釋放任何東西。 –