Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在黑莓中检查互联网连接(Wifi、GPRS、EDGE)的可用性。
试试这个....它对我有用。
protected static boolean isInternetAvailable() { boolean flag = false; if(WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED){ flag = true; } else if(RadioInfo.isDataServiceOperational()){ flag = true; } return flag; }