我最近在我的 Android 手机上安装了QPython version-1.2.1,它在Android 4.2.2 Jelly-Bean上运行。我可以使用QPython上的控制台来执行一些 python 命令,但是在第一次安装 QPython 时运行helloworld.py脚本时遇到问题。
你好世界.py:
#-*-coding:utf8;-*-
#qpy:console
#qpy:2
import androidhelper
droid = androidhelper.Android()
line = droid.dialogGetInput()
s = "Hello, %s" % (line.result,)
droid.makeToast(s)
运行文件helloworld.py后控制台的输出是这样的:
Traceback (most recent call last):
File "/storage/sdcard0/com.hipipal.qpyplus/scripts/helloworld.py", line 12, in <module>
droid = androidhelper.Android()
File "/storage/sdcard0/com.hipipal.qpyplus/lib/python2.7/site-packages/androidhelper/sl4a.py", line 34, in __init__
self.conn = socket.create_connection(addr)
File "/QPython/QPython2-core/build/python-install/lib/python2.7/socket.py", line 553, in create_connection
socket.gaierror: [Errno 7] no address associated with hostname.
如果从控制台调用,androidhelper 模块方法也不起作用。