Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我收到异常为空。我不明白为什么会这样,我该如何解决。请指导。
编辑:我试图用内部类调用它,它抛出空异常。并且在类之外定义了公共类,它工作正常。
注意:该类是我从中调用它的 asyncTask。
你有没有考虑过你可能已经抓住了一个事实NullPointerException?尝试在您的 catch 子句中执行以下操作:
NullPointerException
Log.d("TAG", "ex.toString() => " + ex.toString());
这种现象称为“裸空”(有关更多信息,请参阅评论)。