Introduction to JNI- Java Native Interface
Introduction to JNI- Java Native Interface
The Java Native Interface (JNI) is a native programming interface in JDK. It is used to call C/C++ libraries from the libraries written in Java and vice-versa. This is a java API which bridges the gap between C/C++ and Java.
Why do we use JNI?
JNI calls are used when we already have a library which is written in C/C++ language and we need to use that library in our Java application. For example,…
View On WordPress



















