如何在Java中运用并且自定义本地方法?
可以使用本地C/C++的类库,如何使用:
public class Example { static { System.load("E:/project_java/OO(Object-Orientde)/IDEAproject/JVMDemo/chapter4/resources/example.dll"); } public native static void hello(); }
/* DO NOT EDIT THIS FILE - it is machine generated */ #include "jni.h" /* Header for class com_self_java_Example */ #ifndef _Included_com_self_java_Example #define _Included_com_self_java_Example #ifdef __cplusplus extern "C" { #endif /* * Class: com_self_java_Example * Method: hello * Signature: ()Ljava/lang/String; */ JNIEXPORT jstring JNICALL Java_com_self_java_Example_hello (JNIEnv *, jclass); #ifdef __cplusplus } #endif #endif
#include "jni.h" #include "com_self_java_Example.h" JNIEXPORT jstring JNICALL Java_com_self_java_Example_hello (JNIEnv * env, jclass obj){ jstring str = (jstring) "hello word!C"; printf("hello word!C"); return str; };
并且导入 JAVA_HOME\include\jni.h 和 JAVA_HOME\include\win32\jni_md.h
gcc com_self_java_Example.c com_self_java_Example.h jni.h -fPIC -shared -o example.dll
生成.dll 文件,使用gcc命令需要安装mingw64/32
在java的Example类中使用System.load()方法加载 .dll 文件,即可在虚拟机的本地方法区中加载该本地方法。