JNI打通java和c
Posted 懒企鹅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JNI打通java和c相关的知识,希望对你有一定的参考价值。
1、JNI简介
The Java Native Interface (JNI) is a programming framework that enables Java code running in a Java Virtual Machine (JVM) to call and be called by[1] native applications (programs specific to a hardware and operating system platform) and libraries written in other languages such as C, C++ and assembly.
--引用于wiki
官方文档:
https://docs.oracle.com/javase/8/docs/technotes/guides/jni/spec/jniTOC.html
2、Java调用C
2.1、java类文件中定义本地方法,其他方法调用此本地方法
2.2、编写本地方法的实现
2.3、调用非JNI规范的C方法
3、C调用Java
以上是关于JNI打通java和c的主要内容,如果未能解决你的问题,请参考以下文章
01_JNI是什么,为什么使用,怎么用JNI,Cygwin环境变量配置,NDK案例(使用Java调用C代码),javah命令使用