About 360,000 results
Open links in new tab
  1. Java Native Interface Specification Contents - Oracle

    1. Introduction. 2. Design Overview. 3. JNI Types and Data Structures. 4. JNI Functions. 5. The Invocation API.

  2. Java Native Interface - Wikipedia

    JNI enables programmers to write native methods to handle situations when an application cannot be written entirely in the Java programming language, e.g. when the standard Java class …

  3. Guide to JNI (Java Native Interface) - Baeldung

    Jan 8, 2024 · JNI header file – this header file for C/C++ (include/jni.h into the JDK directory) includes all definitions of JNI elements that we may use into our native programs.

  4. Java Native Interface with Example - GeeksforGeeks

    Mar 24, 2025 · JNI stands for Java Native Interface. JNI is a framework in Java that allows users to run the Java Code and Operate with the applications and libraries written in other languages …

  5. Java Native Interface (JNI) - Java Programming Tutorial

    The most confusing and challenging task in JNI programming is the conversion (or transformation) between JNI reference types (such as jstring, jobject, jintArray, jobjectArray) and native types …

  6. Understanding the Java Native Interface (JNI) - IBM

    This description of the Java™ Native Interface (JNI) provides background information to help you diagnose problems with JNI operation. The specification for the Java Native Interface (JNI) is …

  7. Getting Started with Java Native Interface (JNI) - TheLinuxCode

    Java Native Interface (JNI) allows Java code running in a Java Virtual Machine (JVM) to call and be called by native applications and libraries written in languages like C and C++.

  8. Mastering the Java Native Interface (JNI): A Comprehensive Guide

    Jul 5, 2025 · JNI serves as a bridge between the Java Virtual Machine (JVM) and native code. It allows Java applications to call native methods implemented in other languages and vice versa.

  9. JNI tips - Android NDK | Android Developers

    Oct 3, 2025 · To browse global JNI references and see where global JNI references are created and deleted, use the JNI heap view in the Memory Profiler in Android Studio 3.2 and higher. …

  10. Java Native Interface - Wikibooks, open books for an open world

    Sep 22, 2025 · The Java Native Interface (JNI) enables Java code running in a Java Virtual Machine (JVM) to call and to be called by native applications (programs specific to a hardware …