我请求帮助,因为我有一个我不理解的nullpointerexception。
这是代码:
try {
sr = application.launcher.getSmstrend().getConnexion()
.sendSMS(this);
}
} catch (Exception e) {
launcher.append(launcher.format_log.format(new Date())
+ " RDV.envoi : ERREUR d'envoi du message, " + e);
}
需要注意的是:getConnexion()方法返回一个有效的对象(非null),并且this参数也不为null。 Smstrend不是“trendoo”,一个通过java API发送SMS的站点。错误是:
sam. 11 janv. 2014 22-08-54 RDV.envoi : ERREUR d'envoi du message, java.lang.NullPointerException
你能解释一下我在哪里搜索吗?空引用在哪里?