朋友,
我正在尝试检查android中的internetconnectivity并使用以下代码
final ConnectivityManager conn_manager = (ConnectivityManager)
this.getSystemService(Context.CONNECTIVITY_SERVICE);
final NetworkInfo network_info = conn_manager.getActiveNetworkInfo();
if ( network_info != null && network_info.isConnected() )
{
return true;
}
else
{
return false;
}
但它给了我网络/ wifi连接,如果wifi连接它给我真实,如果互联网没有连接,那么它也给了我真实。
任何人指导我的解决方案是什么?
答案 0 :(得分:12)
可能存在一些与if
子句中的逻辑有关的问题。
我用这个:
/**
* Checks if we have a valid Internet Connection on the device.
* @param ctx
* @return True if device has internet
*
* Code from: http://www.androidsnippets.org/snippets/131/
*/
public static boolean haveInternet(Context ctx) {
NetworkInfo info = (NetworkInfo) ((ConnectivityManager) ctx
.getSystemService(Context.CONNECTIVITY_SERVICE)).getActiveNetworkInfo();
if (info == null || !info.isConnected()) {
return false;
}
if (info.isRoaming()) {
// here is the roaming option you can change it if you want to
// disable internet while roaming, just return false
return false;
}
return true;
}
答案 1 :(得分:0)
您可以使用requstRouteToHost检查是否可以连接到特定的IP地址。
答案 2 :(得分:0)
使用这个漂亮的库:http://code.google.com/p/connectivity
您可以订阅网络状态通知,并在网络状态发生变化时获得回电。或者,您可以直接查询网络是否可用。使用起来非常简单。