您的位置:首页 > 编程语言 > Java开发

java中调用dll总结

2009-02-16 20:05 309 查看
java 调用dll文件时

几个注意点:

1. package的使用

2. javah的使用

3.path路径的设定

下面实例介绍java调用dll中的Max函数:

hello.java

package 2hei.net.dll;

public class hello

{

static

{

//System.out.println(System.getProperties().get("java.library.path"));

System.loadLibrary("Hello");

}

public native static int Max(int a,int b);

public static void main(String[] args)

{

int maxnum = 0;

int aa = 10;

int bb = 11;

hello hi= new hello();

maxnum = hi.Max(aa,bb);

System.out.println("max is "+maxnum);

}

}

生成.h头文件

createh.bat

cd E:/src/java/2hei/net/dll

javah hello

会生成一个2hei_net_dll_hello.h的文件

编辑编辑 2hei_net_dll_hello.h 把#include <jni.h> 改成#include "jni.h"

从jdk的目录里面找到jni.h 和 jni_md.h

下面使用VC++生成dll文件。

新建一个dll工程,比如Hello 编辑Hello.cpp

// Hello.cpp : Defines the entry point for the DLL application.

//

#include "stdafx.h"

#include "Hello.h"

#include "2hei_net_dll_hello.h"

JNIEXPORT jint JNICALL 2hei_net_dll_hello_Max

(JNIEnv *, jclass, jint a, jint b)

{

if(a>=b)return a;

else

return b;

}

编译工程后,在Debug目录中找到Hello.dll文件,放到java的path目录下面。

执行hello.java 即可以得到想要的结果。



注意,如果要调用dll,需要配置-Djava.library.path参数或者需要把dll文件拷贝到system32或者java的bin目录中~~~~
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: