java.lang.nullpointerexception in j2me

一曲冷凌霜 提交于 2019-11-29 17:40:37

Either of iso14443 or textfield1 objects is likely null.

With the way you debug things (quite smart BTW, my congratulations), you could log the checks about as follows:

form.append("\n\n iso14443 is null: [" + (iso14443 == null)
        + "],\n textfield1 is null: [" + (textfield1 == null) + "]"); 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!