在Samsung设备上检查网络状态时出现NullPointerException

时间:2017-09-30 07:28:31

标签: android nullpointerexception network-state

我已在Play商店发布了我的应用,并且我使用以下方法检查网络状态:

public class TestInternetConnection {

    public boolean checkInternetConnection(Context context) {

         ConnectivityManager con_manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);

         if (con_manager.getActiveNetworkInfo() != null && con_manager.getActiveNetworkInfo().isAvailable() && con_manager.getActiveNetworkInfo().isConnected()) {
            return true;
        } else {
            return false;
        }
    }
}

Google Play控制台中,我看到使用checkInternetConnection调用Nullpointerexception方法时,三星设备崩溃了。问题是什么?在我的设备和其他设备上工作得很好。

堆栈跟踪:

java.lang.NullPointerException: 
      at de.name.app.TestInternetConnection.checkInternetConnection (TestInternetConnection.java)
      at de.name.app.SubstitutionInfoFragment$2.run (SubstitutionInfoFragment.java)
      at java.lang.Thread.run (Thread.java:762)

2 个答案:

答案 0 :(得分:0)

您需要修改您的功能,因为这在我的所有设备中都适用。只是在继续之前添加对上下文的空检查。

public static boolean checkInternetConnection(Context context) {
    // Add a null check before you proceed
    if (context == null) return false;

    ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo info = cm.getActiveNetworkInfo();
    return info != null && info.isConnected();
}

答案 1 :(得分:0)

Reaz Murshed的答案应该可以解决您的问题,但在此之前,我认为您应该查看堆栈跟踪并确切了解您的应用将null上下文传递给{{1 }}。这就是错误的真正来源。