Java中运行并且自定义本地方法 #native
2021/5/30 20:50:08
本文主要是介绍Java中运行并且自定义本地方法 #native,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
如何在Java中运用并且自定义本地方法?
可以使用本地C/C++的类库,如何使用:
- 定义本地方法native方法
public class Example { static { System.load("E:/project_java/OO(Object-Orientde)/IDEAproject/JVMDemo/chapter4/resources/example.dll"); } public native static void hello(); }
- 创建 .dll文件:
- 使用 javah -jni [全类名] 生成.h头文件。 如:javah -jni com.self.java.Example 生成 com_self_java_Example.h
/* 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
- 实现 .h文件中的方法
#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
- 在.c文件目录下使用
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 文件,即可在虚拟机的本地方法区中加载该本地方法。
- 点击运行 输出结果为 hello word!C
这篇关于Java中运行并且自定义本地方法 #native的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-23线下车企门店如何实现线上线下融合?
- 2024-12-23鸿蒙Next ArkTS编程规范总结
- 2024-12-23物流团队冬至高效运转,哪款办公软件可助力风险评估?
- 2024-12-23优化库存,提升效率:医药企业如何借助看板软件实现仓库智能化
- 2024-12-23项目管理零负担!轻量化看板工具如何助力团队协作
- 2024-12-23电商活动复盘,为何是团队成长的核心环节?
- 2024-12-23鸿蒙Next ArkTS高性能编程实战
- 2024-12-23数据驱动:电商复盘从基础到进阶!
- 2024-12-23从数据到客户:跨境电商如何通过销售跟踪工具提升营销精准度?
- 2024-12-23汽车4S店运营效率提升的核心工具