繁体   English   中英

Java JNA u32t 指针返回值(内存)

[英]Java JNA u32t return value of Pointer (Memory)

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

定义如下:

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

我不确定如何使用 map u32t 以及如何使用或指针或 Memory 获取返回值?

我是这样设计的:

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”很好,但 returnValue 不应该为 0。因为这是我需要传递给其他方法的值,例如:

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

如果我然后开始:

error = myClass.ClosePort(handle);

返回错误表示端口句柄无效。

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

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

欢迎来到 StackOverflow。

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

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

我还注意到您使用NativeLong作为返回类型,但它被明确指定为 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();

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM