Concept
Java Native Interface 0
Java Native Interface (JNI) is a framework that allows Java code running in the Java Virtual Machine (JVM) to call and be called by native applications and libraries written in other languages like C or C++. This enables Java applications to leverage existing native code libraries and perform operations that are not possible within the Java platform alone, such as interacting with hardware or optimizing performance-critical sections of code.
Relevant Degrees