求大侠帮忙!!!jnative组件怎么样用java调用dll文件里的方法!!

 我来答
java26638719
2012-06-07 · 超过11用户采纳过TA的回答
知道答主
回答量:30
采纳率:0%
帮助的人:27.5万
展开全部
public class TestHello {
public native void displayHelloWorld();
public native int sum(int a, int b);

static {
System.loadLibrary("testhello"); //装载dll文件
}

public static void main(String[] args) {
TestHello th = new TestHello();
int y = new TestHello().sum(2, 4);
System.out.println("y=" + y);
th.displayHelloWorld();
}
}

//下面是DLL文件的源码
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class TestHello */

#ifndef _Included_TestHello
#define _Included_TestHello
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: TestHello
* Method: displayHelloWorld
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_TestHello_displayHelloWorld
(JNIEnv *, jobject);

/*
* Class: TestHello
* Method: sum
* Signature: (II)I
*/
JNIEXPORT jint JNICALL Java_TestHello_sum
(JNIEnv *, jobject, jint, jint);

#ifdef __cplusplus
}
#endif
#endif
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式