最简单的java调用C/C++代码的步骤

1.首先在java类中声明一个native的方法

package com.rf.zj;

public class testNative {
    public  native String sayHello();
    public static void main(String[] args){
        System.out.println("this is my test native");
    }
}

2.使用javah命令生成包含native方法声明的C/C++头文件

image

生成的头文件如下

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_rf_zj_testNative */

#ifndef _Included_com_rf_zj_testNative
#define _Included_com_rf_zj_testNative
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class:     com_rf_zj_testNative
* Method:    sayHello
* Signature: ()Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_com_rf_zj_testNative_sayHello
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif

3.按照生成的C/C++t头文件来写C/C++源文件

你可能感兴趣的:(最简单的java调用C/C++代码的步骤)