Java Native Interface
就是Java语言自己实现不了,依赖本地相关的函数接口来实现

解决方案 »

  1.   

    就是java本地接口,与java语言本身无关。
      

  2.   

    The JNI is for programmers who must take advantage of platform-specific functionality outside of the Java Virtual Machine. Because of this, it is recommended that only experienced programmers should attempt to write native methods or use the Invocation API!
    The JNI allows Java code that runs within a Java Virtual Machine (VM) to operate with applications and libraries written in other languages, such as C, C++, and assembly. In addition, the Invocation API allows you to embed the Java Virtual Machine into your native applications.