jni means java native interfaceYou can find more knowledge from www.google.com

解决方案 »

  1.   

    也就是java调用本地C动态库的接口,让你完成java不方便实现的功能或调用一些已有的库的功能,在SUN的Tutorial有很详细的介绍的例子。
      

  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! 
      

  3.   

    用JNI可以嵌入其他的语言:如ASNI C程序等等,就像C语言中可以嵌入汇编语言一样