Java DLL 链接错误

发布于 2024-10-15 02:58:13 字数 494 浏览 2 评论 0原文

我正在使用 libusb-- http://sourceforge.net/apps/trac/libusb-win32 /wiki

但是,我得到:

线程“main”中出现异常 java.lang.UnsatisfiedLinkError: USBManager.usb_init()V

public class USBManager 
{   
    static{
        System.loadLibrary("libusb");   
    }

    native void usb_init();
    public USBManager()
    {       
        usb_init();     
    } 
}

I am using libusb-- http://sourceforge.net/apps/trac/libusb-win32/wiki

However, I get:

Exception in thread "main"
java.lang.UnsatisfiedLinkError:
USBManager.usb_init()V

public class USBManager 
{   
    static{
        System.loadLibrary("libusb");   
    }

    native void usb_init();
    public USBManager()
    {       
        usb_init();     
    } 
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

樱娆 2024-10-22 02:58:13

这个库的 Java 包装器已经编写好了。你为什么不尝试一下呢?

There is a Java wrapper for this library that has already been written. Why don't you try that ?

橪书 2024-10-22 02:58:13

你不能只使用 public native usb_init();然后像这样加载本地库,JNI 不是这样实现的。

您使用 javah 创建一个 .h 文件,该文件可用于创建一个实现类中特定本机函数的库。

javac USBManager

创建一个与 javah 一起使用的类文件:

javah USBManager

这会在该位置生成一个名为“USBManager.h”的文件,该文件指定要在 .so/.dll 中实现的函数,这些函数实现相关的本机函数。

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

#ifndef _Included_USBManager
#define _Included_USBManager
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     USBManager
 * Method:    usb_init
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_USBManager_usb_1init
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif

因此,您需要导出一个名为“Java_USBManager_usb_1init”的函数,该函数采用指定的参数。

该函数只不过是:

JNIEXPORT void JNICALL Java_USBManager_usb_1init (JNIEnv *, jobject) {
    usb_init();
}

上有一个非常好的简单示例Sun 开发人员的博客,但还有很多其他示例。

You can't just use public native usb_init(); and then load a native library like that, the JNI is not implemented that way.

you use javah to create a .h file the can be used to create a library that implements the specific native functions in the class.

javac USBManager

Creates a class file, that you use with javah:

javah USBManager

This yields a file in that location called 'USBManager.h', which specifies the functions to implement in a .so/.dll that implement the relevant native function.

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

#ifndef _Included_USBManager
#define _Included_USBManager
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     USBManager
 * Method:    usb_init
 * Signature: ()V
 */
JNIEXPORT void JNICALL Java_USBManager_usb_1init
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif

So you need to export a function called 'Java_USBManager_usb_1init', that takes the to parameters specified.

That function can be nothing more than:

JNIEXPORT void JNICALL Java_USBManager_usb_1init (JNIEnv *, jobject) {
    usb_init();
}

There is a pretty good simple example on a blog by a Sun developer, but there are lots of other examples out there.

陌上青苔 2024-10-22 02:58:13

尝试 System.loadLibrary("usb");

Try System.loadLibrary("usb");

夏日浅笑〃 2024-10-22 02:58:13

要么找不到 usb.dll,请尝试使用绝对路径而不是 System.loadLibrary() 的 System.load() 来验证这一点。

另一个问题可能是,libusb 依赖于其他 DLL。使用 Dependency Walker 查看 libusb 引用了哪些 DLL。

另一个问题可能是 DLL 未导出具有正确签名的函数。 DLL中应该有一个USBManager_usb_init()函数。使用 javah 创建正确的签名。

Either the usb.dll cannot be found, try System.load() with an abbsolute path instead of System.loadLibrary(), to verify this.

Another problem might be, that libusb relies on other DLLs. Use Dependency Walker to see, which DLLs are referenced by libusb.

Another problem might be, that the DLL does not export a function with the corrent Signature. There should be a USBManager_usb_init() function in the DLL. Use javah to create the correct signature.

许久 2024-10-22 02:58:13

JNI 相当简约,jni 访问的任何函数都需要针对您的类编写的本机包装函数。 javah 工具生成一个包含所需包装器的标头。

要以简单的方式访问本机函数,请使用 JNA

JNI is rather minimalistic, any function accessed by jni requires a native wrapper function written against your class. The tool javah generates a header containing the required wrappers.

To access native functions the easy way use JNA.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文