我想使用HttpConnection下载数据,请参阅下面的示例
class ConnectionThread extends Thread
{
public void run()
{
try{
showToast("in the run method");
HttpConnection conn = null;
String URL = "http://xxxxxxx.com/api/api.php?func=showAllCountries;interface=wifi";
conn = (HttpConnection)Connector.open(URL);
}catch(Exception e){
showToast(e+"");
}
}
当运行上面的代码时,在模拟器上它说Java.io.IOException没有找到Wi-Fi连接,虽然在管理连接中我可以看到联播器与Wifi连接,请问为什么会发生这种情况
请
使用deviceside= false;
在模拟器中,wifi是不可能的,模拟器会访问你的系统网络,一旦你在真实的设备上,如果在设备中启用了wifi,它就会工作。
请按照此链接了解如何建立连接。