使用 JNA 链接到自定义 dll

发布于 2024-07-12 13:23:55 字数 65 浏览 3 评论 0原文

如何使用 JNA 访问自定义 .lib / .dll 函数? 有人可以举个例子吗?

谢谢。

how do I access custom .lib / .dll functions using JNA?
Can someone provide an example?

Thank you.

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

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

发布评论

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

评论(1

放血 2024-07-19 13:23:55

示例(来自 Wikipedia):

import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.Native;

/** Simple example of Windows native library declaration and usage. */
public class BeepExample {
   public interface Kernel32 extends StdCallLibrary {
       // FREQUENCY is expressed in hertz and ranges from 37 to 32767
       // DURATION is expressed in milliseconds
       public boolean Beep(int FREQUENCY, int DURATION);
       public void Sleep(int DURATION);
   }
   public static void main(String[] args) {
    Kernel32 lib = (Kernel32) Native.loadLibrary("kernel32", 
           Kernel32.class);
    lib.Beep(698, 500);
    lib.Sleep(500);
    lib.Beep(698, 500);
   }
}

在本例中,我们从“kernel32.h”加载它。 dll”库。
我希望这能让 JNA 更加清晰。

编辑:我将解释代码:
您需要使用库中所需的函数定义一个接口(扩展 com.sun.jna.Library)。
然后,调用 com.sun.jna.Native.loadLibrary("LibraryName", InterfaceName.class)。
最后,将输出存储在具有接口类型的变量中。
只需从该变量调用函数即可。

Example (from Wikipedia):

import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.Native;

/** Simple example of Windows native library declaration and usage. */
public class BeepExample {
   public interface Kernel32 extends StdCallLibrary {
       // FREQUENCY is expressed in hertz and ranges from 37 to 32767
       // DURATION is expressed in milliseconds
       public boolean Beep(int FREQUENCY, int DURATION);
       public void Sleep(int DURATION);
   }
   public static void main(String[] args) {
    Kernel32 lib = (Kernel32) Native.loadLibrary("kernel32", 
           Kernel32.class);
    lib.Beep(698, 500);
    lib.Sleep(500);
    lib.Beep(698, 500);
   }
}

In this case, we load it from the "kernel32.dll" library.
I hope this makes JNA clearer.

EDIT: I'll explain the code:
You need to define an interface(that extends com.sun.jna.Library) with the functions you need from the library.
Then, call com.sun.jna.Native.loadLibrary("LibraryName", InterfaceName.class).
Finally, store the output in a variable with the type of the interface.
Just call the functions from that variable.

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