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…