gpt4 book ai didi

java - 在 Android 中使用 isReachable() 时出错

转载 作者:行者123 更新时间:2023-12-01 04:50:37 27 4
gpt4 key购买 nike

我是android开发的新手。这是我的代码

boolean isReachable = false;
try{
isReachable = InetAddress.getByName(MyIPAddress).isReachable(reachableTimeout);
} catch (Exception e){
Log.e("InetAddress", e.getMessage());
}finally {
if (!onlyReachables || isReachable) {
// Do something
}
}

当我的 AndroidManifest.xml 没有这些行时它工作正常

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />

当它出现时,我的应用程序“不幸的是,myApp 已停止”

谁能帮忙解决一下吗?

我的Logcat:

E/AndroidRuntime(9310): FATAL EXCEPTION: main
E/AndroidRuntime(9310): java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.thesis.wifihotspot/com.thesis.wifihotspot.MainActivity}:
java.lang.NullPointerException: println needs a message
E/AndroidRuntime(9310): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2110)
E/AndroidRuntime(9310): at
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2135)
E/AndroidRuntime(9310): at
android.app.ActivityThread.access$700(ActivityThread.java:140)
E/AndroidRuntime(9310): at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1237)
E/AndroidRuntime(9310): at
android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(9310): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(9310): at
android.app.ActivityThread.main(ActivityThread.java:4921)
E/AndroidRuntime(9310): at
java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(9310): at
java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(9310): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1027)
E/AndroidRuntime(9310): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:794)
E/AndroidRuntime(9310): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(9310): Caused by: java.lang.NullPointerException:
println needs a message
E/AndroidRuntime(9310): at android.util.Log.println_native(Native Method)
E/AndroidRuntime(9310): at android.util.Log.e(Log.java:297)
E/AndroidRuntime(9310): at
com.thesis.wifihotspot.MainActivity.setClientsList(MainActivity.java:226)
E/AndroidRuntime(9310): at
com.thesis.wifihotspot.MainActivity.onCreate(MainActivity.java:58)
E/AndroidRuntime(9310): at
android.app.Activity.performCreate(Activity.java:5206)
E/AndroidRuntime(9310): at
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1094)
E/AndroidRuntime(9310): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2074)
E/AndroidRuntime(9310): ... 11 more

更新:据此link ,从 Android 3.0 (Honeycomb) 开始,如果在用户界面线程中访问网络,则 StrictMode 配置为崩溃并出现 NetworkOnMainThreadException 异常。所以我需要添加这些代码才能使应用程序正常运行。

StrictMode.ThreadPolicy policy = new StrictMode. ThreadPolicy.Builder().permitAll().build(); StrictMode.setThreadPolicy(policy);

感谢您的支持。

最佳答案

这可能与您的问题无关,但如果您有 IP 地址,则应该使用 getByAddress 而不是 getByName

isReachable = InetAddress.getByAddress(MyIPAddress).isReachable(reachableTimeout);

这是documentation .

编辑:

您遇到异常,但没有任何消息。首先,删除e.getMessage()。然后,如果您需要解决问题,请显示更多代码。

关于java - 在 Android 中使用 isReachable() 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15041929/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com