gpt4 book ai didi

java - 我收到了我的第一个异常(exception)。现在我该怎么办?

转载 作者:行者123 更新时间:2023-11-29 08:12:06 25 4
gpt4 key购买 nike

我是所有这些疯狂的 Android/Java 编程的新手。我有一个应用程序,(不知何故)我设法弄清楚如何添加应用程序内结算项目。我很确定该错误与应用内结算有关,但我无法在我的任何设备上重现该问题。

    NullPointerException
in ComponentName.<init>()

java.lang.RuntimeException: Unable to destroy activity {ca.ajwest.BeerConverter/ca.ajwest.BeerConverter.BeerConverter}: java.lang.NullPointerException
at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:3035)
at android.app.ActivityThread.handleDestroyActivity(ActivityThread.java:3100)
at android.app.ActivityThread.handleRelaunchActivity(ActivityThread.java:3216)
at android.app.ActivityThread.access$1600(ActivityThread.java:132)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1037)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:143)
at android.app.ActivityThread.main(ActivityThread.java:4196)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at android.content.ComponentName.<init>(ComponentName.java:75)
at android.content.Intent.<init>(Intent.java:2893)
at ca.ajwest.BeerConverter.BillingHelper.stopService(BillingHelper.java:270)
at ca.ajwest.BeerConverter.BeerConverter.onDestroy(BeerConverter.java:615)
at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:3017)
... 12 more

有人可以指导我访问一些资源,以便我可以了解有关此输出或其他内容的更多信息吗?有没有人有类似的经历?

Here's the source如果这有帮助的话。

感谢您的帮助。

最佳答案

您应该查看 BillingHelper.java 中的第 270 行和 BillingConverter 中的第 615 行。在错误日志中,您应该主要寻找两件事;首先,与您的应用程序名称相关的行号,其次;异常名称。

你看到了

Caused by: java.lang.NullPointerException
at android.content.ComponentName.<init>(ComponentName.java:75)
at android.content.Intent.<init>(Intent.java:2893)
at ca.ajwest.BeerConverter.BillingHelper.stopService(BillingHelper.java:270)
at ca.ajwest.BeerConverter.BeerConverter.onDestroy(BeerConverter.java:615)

表示,您的某个类中存在空指针异常。还注意检查行号。应该有一个未初始化或已销毁的变量。

希望对您有所帮助。

关于java - 我收到了我的第一个异常(exception)。现在我该怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7575870/

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