使用 JNA 链接到自定义 dll
如何使用 JNA 访问自定义 .lib / .dll 函数? 有人可以举个例子吗?
谢谢。
how do I access custom .lib / .dll functions using JNA?
Can someone provide an example?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
示例(来自 Wikipedia):
在本例中,我们从“kernel32.h”加载它。 dll”库。
我希望这能让 JNA 更加清晰。
编辑:我将解释代码:
您需要使用库中所需的函数定义一个接口(扩展 com.sun.jna.Library)。
然后,调用 com.sun.jna.Native.loadLibrary("LibraryName", InterfaceName.class)。
最后,将输出存储在具有接口类型的变量中。
只需从该变量调用函数即可。
Example (from Wikipedia):
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.