使用 urllib.urlopen 时应用程序在诺基亚 E71 上关闭
我在我的诺基亚 E71 上运行以下代码。但在输入文本后,程序突然关闭。我的手机上有 GPRS 连接,但我似乎仍然遇到 urllib.urlopen 的问题
代码如下:
import appuifw,urllib
amountInDollars = appuifw.query(u"Enter amount in Dollars","text") data=urllib.urlopen("http://www.google.com").read()
appuifw.note(u"Hey","info")
有什么办法解决这个问题吗? 谢谢
Im running the following code on my Nokia E71. But after the text input, the program closes abruptly. I have a GPRS connection on my phone,but i still seem to be having some problem with urllib.urlopen
The code is as follows :
import appuifw,urllib
amountInDollars = appuifw.query(u"Enter amount in Dollars","text") data=urllib.urlopen("http://www.google.com").read()
appuifw.note(u"Hey","info")
Any way to fix this problem ?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
重写为:
现在应该可以工作了。
Rewriting to:
it should work now.