`
diy8187
  • 浏览: 76469 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论

java 调用dll文件总结

阅读更多

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

javahhello

会生成一个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 即可以得到想要的结果。

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics