3

我尝试在 Android 应用程序中使用原型 python 代码,我发现Chaquopy是一个可能的库。

文档有点稀疏,所以我想澄清一下:我可以用 Chaquopy 在 Android Java 代码中调用我自己编写的 python 方法(包括传递变量)吗?

如果是,是否有可能看到一个例子,这是如何工作的?看到一个特别传递复杂对象(不仅是字符串)的例子,我真的很感激。

谢谢!

4

1 回答 1

3

是的,您可以像调用库代码一样调用自己的 Python 代码。只需将您的 Python 文件放在文档描述的适当目录中即可。

我不确定您指的是哪种“复杂对象”,但这里有一些将各种类型的对象传递f给文件中的 Python 函数的示例mod.py

Python py = Python.getInstance();
PyObject mod = py.getModule("mod");

// If the function knows what methods and attributes to use, Java objects
// can be passed directly.
mod.callAttr("f", someJavaObject);

// If the function expects an iterable, Java arrays can be passed directly.
mod.callAttr("f", new String[] {"one", "two", "three"});

// If the function expects a dict, it can be created as follows.
PyObject builtins = py.getBuiltins();
PyObject d = builtins.callAttr("dict");
d.callAttr("__setitem__", 1, "a");
d.callAttr("__setitem__", 2, "b");
mod.callAttr("f", d);
于 2018-07-02T12:46:47.137 回答