session可能不存在或session中的值对不存在,即结果为null,这种情况下不能直接赋值给一个字符串。
正确做法是先判定状态,当存在值时再赋值给字符串,否则赋值null会报空指针错误。
String account = null; if(session.getAttribute("account")!=null){ account = session.getAttribute("account").toString(); }
原文地址:https://www.cnblogs.com/blunFan/p/11631553.html
时间: 2024-10-10 06:45:13