我想使用 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 No Wi-Fi connection found ,虽然在管理连接中我可以看到模拟器与 Wifi 连接,请问为什么会这样
请