gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 15:14:40 25 4
gpt4 key购买 nike

我正在编写 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 header (由 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 和 jamt.lib,并静态链接 MFC 和 ALT 库。我错过了什么吗?

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

1> Creating library C:\Users\Alexander\youeye-rnd\java-rnd\libvpx-youeye\msvc\libvpx_ye\Debug\libvpx_ye.lib and object C:\Users\Alexander\youeye-rnd\java-rnd\libvpx-youeye\msvc\libvpx_ye\Debug\libvpx_ye.exp

1>LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of other libs; use /NODEFAULTLIB:library 1> libvpx_ye.vcxproj -> C:\Users\Alexander\youeye-rnd\java-rnd\libvpx-youeye\msvc\libvpx_ye\Debug\libvpx_ye.dll

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

最佳答案

因此,有两个问题导致调试变得困难,但这两个问题都是我的错。

首先,当我制作原始的 JNI c-header 时,我没有在 *.Java 源代码中包含包名称,因为我相信生成的 DLL 文件对什么包有点模糊,只要它能理解与它相关的函数的类。因此,我添加了正确的包名称,在类上重命名了 javah,并使用正确的包名称重新生成了 header 。

其次,为了解决 msvc 问题,在“属性”>“链接器”>“输入”>“忽略特定默认库”下,我输入了完整的命令行开关“/NODEFAULTLIB:libcmt”,而它只希望我输入 libcmt 和它负责剩下的事情。更正后,编译时不会出现任何警告。

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

关于Java/JNI/MSVC java.lang.UnsatisfiedLinkError 到我的 DLL 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11798440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com