package com.kikyo.test;
import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Platform;
/**
* JNA框架DLL动态库读取调用示例类
*
* @ClassName: DllCall
* @Description: 读取调用DLL动态库文件中的方法
* @author: LinWenLi
* @date: 2018年7月18日 上午10:32:16
*/
public class JNADllCall {
/**
* DLL动态库调用方法
*
* @Description: 读取调用CDecl方式导出的DLL动态库方法
* @author: LinWenLi
* @date: 2018年7月18日 上午10:49:02
*/
public interface CLibrary extends Library {
// DLL文件默认路径为项目根目录,若DLL文件存放在项目外,请使用绝对路径。(此处:(Platform.isWindows()?"msvcrt":"c")指本地动态库msvcrt.dll)
CLibrary INSTANCE = (CLibrary) Native.loadLibrary((Platform.isWindows() ? "msvcrt" : "c"), CLibrary.class);
// 声明将要调用的DLL中的方法,可以是多个方法(此处示例调用本地动态库msvcrt.dll中的printf()方法)
void printf(String format, Object... args);
}
public static void main(String[] args) {
CLibrary.INSTANCE.printf("Hello, World!");
}
}