我需要检查我的应用程序是否可以使用本地wifi上网,我尝试过
requestRoutetoHost
但是它总是返回false,所以请帮忙
解决方法:
这是测试设备是否具有INTERNET连接周期的最佳方法.
public static boolean hasActiveInternetConnection(Context context) {if (isNetworkAvailable(context)) { try { httpURLConnection urlc = (httpURLConnection) (new URL("http://www.Google.com").openConnection()); urlc.setRequestProperty("User-Agent", "Test"); urlc.setRequestProperty("Connection", "close"); urlc.setConnectTimeout(1500); urlc.connect(); return (urlc.getResponseCode() == 200); } catch (IOException e) { Log.e(LOG_TAG, "Error checking internet connection", e); }} else { Log.d(LOG_TAG, "No network available!");}return false;
}
这是检查它是否具有wifi连接或数据连接的方法.
private boolean checkInternetConnection() { ConnectivityManager conMgr = (ConnectivityManager) getSystemService (Context.CONNECTIVITY_SERVICE); // ARE WE CONNECTED TO THE NET if (conMgr.getActiveNetworkInfo() != null && conMgr.getActiveNetworkInfo().isAvailable() && conMgr.getActiveNetworkInfo().isConnected()) { return true; } else { return false; }}
总结 以上是内存溢出为你收集整理的android-如何检查本地wifi上的互联网是否可用?全部内容,希望文章能够帮你解决android-如何检查本地wifi上的互联网是否可用?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)