我使用 JNA 从Java访问某些 dll 函数,此dll本机函数声明如下:
// it returns (long)
H264_Login (char *sIP, unsigned short wPort, char *sUserName, char *sPassword, LP_DEVICEINFO lpDeviceInfo, int *error); // where LP_DEVICEINFO is a struct
所以,我在库接口中声明它如下:
long H264_Login(String sIP, short wPort, String sUserName, String sPassword,
Structure DeviceDate, int error);
然后我用以下方式调用它:
simpleDLL INSTANCE = (simpleDLL) Native.loadLibrary(
("NetSdk"), simpleDLL.class);
DeviceDate dev = new DeviceDate() // where DeviceDate is a static class inherits com.sun.jna.Structure
int err = (int) INSTANCE.H264_GetLastError();
long result = INSTANCE.H264_DVR_Login("255.255.255.255", (short) 33333, "admin", "admin", dev, err);
但我得到以下例外:
Exception in thread "main" java.lang.Error: Invalid memory access
at com.sun.jna.Native.invokeLong(Native Method)
at com.sun.jna.Function.invoke(Function.java:386)
at com.sun.jna.Function.invoke(Function.java:315)
at com.sun.jna.Library$Handler.invoke(Library.java:212)
at com.sun.proxy.$Proxy0.H264_DVR_Login(Unknown Source)
at Test.main(Test.java:47)
这很奇怪,因为方法参数中没有长变量,只有返回类型很长,我认为它与该异常无关。我还尝试了其他一些方法
返回long
并完美运行。
答案 0 :(得分:0)
您的返回类型必须为NativeLong
。
您的最终论证必须是IntByReference
或int[1]
。
除非DeviceDate
与LP_DEVICEINFO
兼容,否则您需要确保这些结构类型匹配。
修改强>
DeviceDate
和LP_DEVICEINFO
的原生定义是什么?
如果LP_DEVICEINFO
只是一个通用指针,您可以在其中替换特定于设备的结构,那么这应该没问题,例如:
typedef void *LP_DEVICEINFO;
typedef struct _DeviceData { /* anything you want in here */ } DeviceData, *pDeviceData;
但如果它有任何特定的定义,那么该结构的内容必须与DeviceDate
兼容,例如:
typedef struct _LP_DEVICEINFO {
int type;
// Fill in with device-specific information
} DEVICEINFO, *LP_DEVICEINFO;
typedef struct _DeviceDate {
int type; // Example "common" field
int timestamp; // device-specific information
} DeviceDate;