搜索资源列表
hello-jni
- ndk sample 通过ndk编译 并且可以用模拟器运行-compiled by ndk and ndk sample can be used to run the simulator
hello-jni
- 用JAVA 的JNI调用本地c/C++的函数模块,以库函数的形式提供给Java 程序使用-JAVA JNI call with the local c/C++ function module to the form of library functions available to the Java program uses
jnitesting
- c-jni-java Hello world!
hello-jni
- Android的SDK中没有包括JNI的支持,而且对如何支持JNI也没有任何文档说明。不过既然整个Android平台是开源的,我们可以通过Google发布的源代码来找到一些线索(比如frameworks/base/media/jni/目录),依葫芦画瓢的实现上层JAVA程序通过JNI来调用Native C程序中的函数。-Android SDK does not include the JNI support but no documentation for instructions on how
JNI_helloworld
- 手工写的JNI的Hello World程序,并在ReadMe.txt中注明了编译中的细节问题, 适合理解JNI的使用-Hand-written JNI Hello World program, and in the ReadMe.txt indicate the details of the compilation for understanding the use of JNI
JNI_simple_example
- JNI简单示例 1.login 简介:一个通过调用C代码来实现认证登录的示例。 2.ndk_utf 简介:一个JNI代码的hello world程序。 3.ndkcallback 简介:C代码回调java代码示例 4.ndkhelloworld 简介:简单的使用JNI调用C代码,获取返回值。(C代码中包含字符串拼接,其结果显示在log中) 5.ndkpassdata 简介:传递JAVA中的值,在C代码部分进行相应的计算并返回结果,最后在java代码中实现