Java / JNI / MSVC java.lang.UnsatisfiedLinkError我的DLL函数

时间:2012-08-03 15:11:44

标签: java visual-c++ dll linker java-native-interface

我正在编写一个libvpx的视频编码器包装器用于工作,但在Java中,当我尝试调用这些函数时,我得到了java.lang.UnsatisfiedLinkError。

这是我的Java代码:

package default;

class YE_Vpx {
    native int create_stream( String path, int w, int h, int fps );
    native void finalize_stream( int streamid );
    native void append_stream( int streamid, int[] pixels );
    native void finalize_streams( );

    static {
        System.loadLibrary("libvpx_ye"); // This loads the DLL just fine (windows 7), otherwise it would tell me it wasn't in the java.library.path
    }
}

这是我的C标头(由javah生成):

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class YE_Vpx */

#ifndef _Included_YE_Vpx
#define _Included_YE_Vpx
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     YE_Vpx
 * Method:    create_stream
 * Signature: (Ljava/lang/String;III)I
 */
JNIEXPORT jint JNICALL Java_YE_1Vpx_create_1stream
  (JNIEnv *, jobject, jstring, jint, jint, jint);

/*
 * Class:     YE_Vpx
 * Method:    finalize_stream
 * Signature: (I)V
 */
JNIEXPORT void JNICALL Java_YE_1Vpx_finalize_1stream
  (JNIEnv *, jobject, jint);

/*
 * Class:     YE_Vpx
 * Method:    append_stream
 * Signature: (I[I)V
 */
JNIEXPORT void JNICALL Java_YE_1Vpx_append_1stream
  (JNIEnv *, jobject, jint, jintArray);

/*
 * Class:     YE_Vpx
 * Method:    finalize_streams
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_YE_1Vpx_finalize_1streams
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif

这是我的C代码(引用我认为我不能在这里提供的其他文件):

#include <jni.h>
#include <jni_md.h>
#include <sys/types.h>

#include "ye_vpx.h" // This is the javah generated header
#include "ye_vpx_c.h" // This is where most of the meat is, I can't actually post this file =/

#ifdef __cplusplus
extern "C" {
#endif

JNIEXPORT jint JNICALL Java_YE_1Vpx_create_1stream( JNIEnv *env, jobject obj, jstring path, jint w, jint h, jint fps )
{
    jboolean iscopy;
    const jchar *m_path = (*env)->GetStringChars(env, path, &iscopy);
    jint ret = ye_vpx_create_stream( (const char *)m_path, w, h, fps );
    (*env)->ReleaseStringChars(env, path, m_path);
    return ret;
}

JNIEXPORT void JNICALL Java_YE_1Vpx_finalize_1stream(JNIEnv *env, jobject obj, jint streamid)
{
    ye_vpx_finalize_stream( streamid );
}

JNIEXPORT void JNICALL Java_YE_1Vpx_append_1stream(JNIEnv *env, jobject obj, jint streamid, jintArray pixels)
{
    jint *px = NULL;
    int length = 0;

    length = (*env)->GetArrayLength(env, pixels);
    px = (jint *)calloc( length, sizeof(jint) );
    (*env)->GetIntArrayRegion(env, pixels, 0, length, px);
    //px = (jint *)GetIntArrayElements( env, pixels, &iscopy );
    ye_vpx_append_stream( streamid, px );
    free( px );
}

JNIEXPORT void JNICALL Java_YE_1Vpx_finalize_1streams(JNIEnv *env, jobject obj)
{
    ye_vpx_finalize_streams();
}

#ifdef __cplusplus
}
#endif

据我所知,我已经正确地导出了所有必要的东西。我正在使用Microsoft Visual C(2010 Express),并且正在连接jvm.lib和jawt.lib,并且静态链接到MFC和ALT库。我错过了什么吗?

我应该在构建我的DLL时提到,我得到以下输出:

  

1&GT;创建库C:\ Users \ Alexander \ youeye-rnd \ java-rnd \ libvpx-youeye \ msvc \ libvpx_ye \ Debug \ libvpx_ye.lib   和对象C:\ Users \ Alexander \ youeye-rnd \ java-rnd \ libvpx-youeye \ msvc \ libvpx_ye \ Debug \ libvpx_ye.exp

     

1&gt; LINK:警告LNK4098:defaultlib'LIBCMT'与其他lib的使用冲突; use / NODEFAULTLIB:library 1&gt; libvpx_ye.vcxproj - &gt; C:\ Users \用户亚历山大\ youeye-RND \ java的RND \ libvpx-youeye \ MSVC \ libvpx_ye \调试\ libvpx_ye.dll

我尝试将“忽略特定默认库”(在链接器&gt;输入下)设置为“/ NODEFAULTLIB:libcmt”,但这没有效果。我想这可能是我的问题,但我并不十分确定。

1 个答案:

答案 0 :(得分:1)

所以有两个问题使得调试变得困难,但两者都是我的错。

首先,当我创建原始的JNI c-header时,我没有在* .Java源代码中包含软件包名称,因为我认为生成的DLL文件对于什么软件包有点模棱两可,只要它理解了它与函数相关的类。所以,我在类上添加了正确的包名,redid javah,并使用正确的包名重新生成了标题。

其次,要解决msvc问题,请在Properties&gt;下进行。链接器&gt;输入&gt; “忽略特定的默认库”当我只是希望我放入libcmt时它放入了完整的命令行开关“/ NODEFAULTLIB:libcmt”,它完成了其余工作。一旦纠正,它编译时没有任何警告。

我希望这可以帮助一些人在Windows上调试他们自己的JNI / DLL问题。