Android 中原生库是如何执行的?

发布于 2024-10-17 14:57:43 字数 126 浏览 4 评论 0原文

我在想当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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浮云落日 2024-10-24 14:57:43

您通过 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

白云悠悠 2024-10-24 14:57:43

这是如何构建本机代码并使用它的好例子
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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文