我正在尝试在我的Android应用程序中使用python解释器来运行SymPy。我已经使用本指南编译了Python for arm。 http://mdqinc.com/blog/2011/09/cross-compiling-python-for-android/
这给了我一个libpython2.7.so文件,我把它放到jniLibs / armeabi /中。 在我的应用程序中,我按如下方式加载它:
public class PythonTest {
static {
System.loadLibrary("python2.7");
}
public static native void Py_Initialize();
public static native void Py_Finalize();
public static native int PyRun_SimpleString(String s);
}
我正在尝试使用include目录中的标题中的方法,这些方法也可以在这里找到:https://docs.python.org/2/c-api/
当我在设备上运行应用程序时,出现以下错误:
No implementation found for void com.example.dorian.testapplication.PythonTest.Py_Initialize() (tried Java_com_example_dorian_testapplication_PythonTest_Py_1Initialize and Java_com_example_dorian_testapplication_PythonTest_Py_1Initialize__)
所以对我来说,这似乎是加载了库,但它似乎在寻找JNIEXPORT函数。但是,如果不编写特定的C ++文件,我是否应该能够使用这个库?如果没有,我将如何实现这一目标。可能有工具生成包装文件或类似的东西吗?
答案 0 :(得分:0)
您需要一个JNI包装器库,它将充当Java代码和libpython2.7.so之间的桥梁。战略人员可能已经足够根据JNI惯例包含三个函数,例如
JNIEXPORT jint JNICALL com_example_dorian_testapplication_PythonTest_PyRun_1SimpleString
(JNIEnv *env, jclass jc, jstring js)
{
char* cs = env->GetStringUTFChars(js, 0);
std::string s = new std::string(cs);
env->ReleaseStringUTFChars(env, js, cs);
return PyRun_SimpleString(s.c_str());
}
如果问题不明确,请阅读http://joaoventura.net/blog/2014/python-android-2上的教程。
请注意,您可以使用PythonTest类的任何包名称,但不一定与您的Android应用包名称相关,例如。
package com.python27;
class Python {
static {
System.loadLibrary("python2.7");
}
public static native void Initialize();
public static native void Finalize();
public static native int Run(String s);
}
将期待JNI包装器
JNIEXPORT void JNICALL com_python27_Python_Initialize(JNIEnv *env, jclass jc);
JNIEXPORT void JNICALL com_python27_Python_Finalize(JNIEnv *env, jclass jc);
JNIEXPORT jint JNICALL com_python27_Python_Run(JNIEnv *env, jclass jc, jstring js);