您好我正在尝试从
android中的
java代码中找到一种执行python脚本的方法.我对此事进行了研究,但我发现的唯一一件事就是如何在APK for android中转换python脚本(Kivy e.t.c.).
更具体地说,我有一个包含很多函数的脚本.我想要做的是在我的java代码中基于这个python脚本创建一个对象,并通过这个对象来调用我的函数.
我无法将我的python代码转换为java,因为我使用的是仅存在于python中的各种库.任何建议都会有所帮助并深深体会到.
下面是我的python脚本片段.我使用库魅力进行加密.
from charm.core.math.integer import integer,serialize,deserialize
class serializeClass:
def __init__(self)
...
def serialize(self, charm_object):
assert type(charm_object) == integer, "required type is integer, not: ", type(charm_object)
return serialize(charm_object)
def deserialize(self, object):
assert type(object) == bytes, "required type is bytes, not: ", type(object)
return deserialize(object)
最佳答案 您可以使用SL4A项目,它允许您在Android上运行Python代码.
> Github:https://github.com/damonkohler/sl4a
>教程:https://github.com/damonkohler/sl4a/blob/wiki/Tutorials.md