Date up = null;
up = cominf.getUpdatetime(); //异常:NullPointerException
if(null!=up){
String update = " ";
String updatetime = " ";
update = String.valueOf(up);
if(update.length()> 11){
updatetime = update.substring(0,update.lastIndexOf( ". "));
}
request.setAttribute( "updatetime ",updatetime);
}
/*
java.lang.NullPointerException
有比较好的 办法没?
向各位大虾 求教了~~
*/
------解决方案--------------------
空指针,传值失败
------解决方案--------------------
cominf对象的类中的getUpdatetime()方法定义有问题啊。
------解决方案--------------------
检查cominf