问题
How to check availability of internet connection(Wifi, GPRS, EDGE) in Blackberry.
回答1:
Try this....it worked for me .
protected static boolean isInternetAvailable() {
boolean flag = false;
if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED){
flag = true;
}
else if(RadioInfo.isDataServiceOperational()){
flag = true;
}
return flag;
}
来源:https://stackoverflow.com/questions/11670956/how-to-check-availability-of-internet-connectionwifi-gprs-edge-in-blackberry