Android 中原生库是如何执行的?
我在想当android应用程序加载本机库时,该库如何执行? apk中的dex文件由dalvik VM执行,但是当OPcodes中的逻辑调用库中的方法(不是dex格式)时,VM是否挂起并等待进程(该应用程序和VM正在运行) )执行库? 谢谢
I am thinking about when an android application load a native library, how the library be executed?
The dex file in apk is executed by the dalvik VM, but when the logic in OPcodes calls a method in a library(not in dex format), does the VM suspend and wait for the process(that this app & VM is running on) to execute the library?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您通过 JNI 调用本机库。您可以从这里阅读有关 JNI 如何工作的更多信息:
http://java. sun.com/docs/books/jni/html/jniTOC.html
You call the native library through JNI. you could read more from here about how JNI works:
http://java.sun.com/docs/books/jni/html/jniTOC.html
这是如何构建本机代码并使用它的好例子
http://www.aton.com/android-native-libraries-对于-java-应用程序/
Here is the good example How to build native Code and use it
http://www.aton.com/android-native-libraries-for-java-applications/