Java JNA u32t return 指针(内存)的值

Java JNA u32t return value of Pointer (Memory)

我尝试使用 JNA 访问 C++ DLL 的方法。

定义如下:

u32t OpenPort(u8t valueA, char* valueB, u32t* handle);

我不确定如何映射 u32t 以及如何使用指针或内存获取 return值?

我是这样写的:

int OpenPort(byte valueA, String valueB, IntByReference handle); //u32t OpenPort(u8t type, char* myString, u32t* handle);

正在打电话

        IntByReference handle = new IntByReference();            
        byte i = 0;
        int error = myClass.OpenPort(i, "my string", handle);
        System.out.println(error  + " - " + handle.getValue());

结果为“0 - 0”。

错误“0”没问题,但 return 值不应为 0。因为这是我需要传递给其他方法的值,例如:

int ClosePort(IntByReference handle); //u32t ClosePort(u32t handle);

如果我开始:

error = myClass.ClosePort(handle);

return 错误表示端口句柄无效。

来自 DLL 制造商的示例 C# 代码如下:

UInt32 handle;
UInt32 error;
error= OpenPort(0, "teststring", out handle);
xError = ClosePort(handle);

欢迎使用 Whosebug。

Pointer 实际上是指向本机内存,其中有一个 32 位值。但是仅映射到 Pointer 并不能告诉您指向的位置是什么。

您应该使用 IntByReference class 来建模 *uint32_t 或类似的指向 32 位值的指针。该方法将 return 一个指针,但您可以使用 getValue() 方法来检索您想要的实际值。

我还注意到您已将 NativeLong 用于 return 类型,但它被明确指定为 32 位,因此您想使用 int。仅在 long 根据操作系统位数定义为 32 位或 64 位的情况下使用 NativeLong

请注意 Java 没有符号整数与无符号整数的概念。虽然该值将是 32 位 int,但您需要通过将负值转换为无符号对应值来处理您自己的代码中的负值。

所以你的映射应该是:

int MethodName(byte valueA, String valueB, IntByReference returnValue);

然后调用:

IntByReference returnValue = new IntByReference();
MethodName(valueA, ValueB, returnValue);
int theU32tValue = returnValue.getValue();