JNA调用报错lang.IllegalArgumentException: Unrecognized calling convention: 1
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
现象:在windows下掉用DLL正常,在linux下报错 lang.IllegalArgumentException: Unrecognized calling convention: 1
原因 :调用的命名约束不同,windows下使用stdcall,,如果没猜错,JNA的实现类继承了 StdllCallLibrary
解决方法:linux下 JNA的实现类继承了 Library,不要继承StdllCallLibrary,笔者本写了windows和linux两套代 码,后发现
在windows下继承Library类也是可以的,like that(通用,未发现其他错误):
class MyLibrary extends Library{
MyLibrary INSTANCE = (MyLibrary ) Native.loadLibrary("mysdk", MyLibrary .class);
}
另外windows下可以这样实现
class Win32Library extends StdllCallLibrary{
Win32Library INSTANCE = (Win32Library ) Native.loadLibrary("mysdk", Win32Library .class);
}
ps:windows下回调函数可继承 StdCallCallback,使用继承Callback的方式在windows和linux都适用,笔者经过简单试验,具体情况还需具体分析!!!
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)