前几天我问了这个问题,但不是太具体,所以我想重新澄清一下。
我正在使用 NDK 创建一个使用 C 中现有库的 Android 应用程序。我遇到的问题是C代码使用了很多java没有的东西(函数指针作为参数是个大问题)。
无论如何,我想知道是否可以在我的 Java 代码中编写 C 代码调用的函数。现在,据我所知,您可以做到,所以如果没有人回答“是的,您可以,LINK,我将不胜感激。” .
任何人都可以尝试解释这个过程吗?我知道这涉及在 C 代码中创建 JVM;任何有助于新手站起来的信息都将不胜感激。
谢谢
编辑 :
所以,我不知道这三个步骤该怎么做。
To call a specific Java function from C, you need to do the following:
Obtain the class reference using the FindClass(,,) method.
Obtain the method IDs of the functions of the class that you want to call using the
GetStaticMethodID and GetMethodID function calls.
Call the functions using CallStaticVoidMethod, CallStaticIntMethod, and CallStaticObjectMethod.
这没有太多解释,我在 C 方面几乎没有经验。 FindClass 是 C 方法吗?