0

当我通过 android studio 在 android mobile 中安装 python 程序时,出现以下错误并且我的应用程序崩溃。

com.chaquo.python.PyException: ConnectionError: HTTPSConnectionPool(host='www.flipkart.com', 
port=443): Max retries exceeded with url: /cello-novelty-big-plastic-free-standing-chest- 
drawers/p/itm30f968c84bc68? 
pid=CSDEFFMN2Y7ZDUGQ&lid=LSTCSDEFFMN2Y7ZDUGQ6GF2RX&marketplace=FLIPKART&pageUID=1603005810862 (Caused 
by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x898b8a78>: Failed to establish 
a new connection: [Errno 7] No address associated with hostname'))

这个应用程序是从用户那里获取产品的 url 并检查产品价格。

4

1 回答 1

0

在 AndroidManifest.xml 中写入行以获取应用程序使用 Internet 的权限。

这个问题是由于您没有通过电话访问您的应用程序的互联网。

     <uses-permission android:name="android.permission.INTERNET" />
于 2020-10-19T01:38:23.850 回答