java.lang.String cannot be cast to java.lang.Integer

解决方案:

Integer.parseInt() 方法

如  这个方法需要传入integer的数据  setFbillflag(Integer  integer)

whsTransBillHeaderVO.setFbillflag(Integer.parseInt(fbillflag.get("value").toString()== null? "0" :fbillflag.get("value").toString()));

你可能感兴趣的:(java,前端,数据库)