JNA 的出现,极大的简化了原有的 JNI 技术.下面是JNA github地址:https://github.com/java-native-access/jna 1. 简单的一个例子: /** Simple example of JNA interface mapping and usage. */ public class HelloWorld { public interface CLibrary extends Library { CLibrary INSTANCE = (CLibra…
版权声明:本文为博主原创文章,未经博主允许不得转载. 本文主要讲述使用JNA模拟结构体并将结构体数组作为参数传递给对应的方法. C语言结构体定义如下: typedef struct Rect { int top; int bottom; int left; int right; } RECT; JNA模拟该结构体: 需要引入: import com.sun.jna.*;import com.sun.jna.ptr.*; //Rect结构体 public static class Rect ext…