在action接收参数写成Short.parseShort(getRequest().getParameter("sourceType"))时,debug测试参数错误为An exception occurred: java.lang.NumberFormatException,Console报错[com.scsoft.action.store.InstoreBillAction] ERROR om.scsoft.action.store.InstoreBillAction -null
当我参数写成Short.parseShort(getRequest().getParameter("sourceType").trim())时,debug测试参数错误为java.lang.NullPointerException at trim(),Console报错[com.scsoft.action.store.InstoreBillAction] ERROR om.scsoft.action.store.InstoreBillAction
这个参数要怎么传递才能避免这个问题
getParameter("sourceType"),是否真的获取到值了,没有值或者数据格式不对都是不行的。
NumberFormatException是 Short.parseShort报错
NullPointerException应该是
trim()
getParameter("sourceType"),是否真的获取到值了,没有值或者数据格式不对都是不行的。
NumberFormatException是 Short.parseShort报错
NullPointerException应该是
trim()
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。