欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Java调用Dll文件函数的方法

程序员文章站 2022-06-24 21:57:03
...
import com.sun.jna.Native;
import com.sun.jna.win32.StdCallLibrary;

/**
 * @author setycyas
 * 测试jna库调用dll.
 * 需要的jna库:https://github.com/java-native-access/jna/releases
 * 文件很多,其实只需要dist文件夹下的jna.jar
 */
public class DllTest {
	
	// 调用dll的方法,颇为简单明了.
	public interface Dll extends StdCallLibrary { 
		// 常量定义
		public static int MB_OK = 0;
		public static int MB_OKCANCEL = 1;
		// 加载dll文件
       public static Dll INSTANCE = (Dll) Native.loadLibrary("user32.dll", Dll.class);
       // 声明需要调用的函数
       public int MessageBoxA(int hwnd,String content,String caption,int utype);
	}

	/**
	 * @param args
	 */
	public static void main(String[] args){
		// TODO Auto-generated method stub
		System.out.println(Dll.INSTANCE.MessageBoxA(0,"Box Content","caption",Dll.MB_OKCANCEL));
	}

}

调用Dll文件的函数,是非常必要的.

Java调用Dll比较简单,需要一个库:https://github.com/java-native-access/jna/releases

下载的zip有40+MB,其实只需要解压后的dist文件夹的 jna.jar

上面写得很清楚了.

 

 

转载于:https://my.oschina.net/u/3223803/blog/1932762