无法比较jsp中的整数对象

时间:2014-09-07 18:33:16

标签: jsp servlets

我无法比较" c"和" c1",即使对象的价值" c"打印1 我的代码如下: -

         <%
          Integer c1=new Integer(1);
          Integer c =(Integer) session.getValue("login"); // value of login is int type in servlet
          out.println(c);  //it works correctly
          if(c==c1 && c!=null)   //it does not work correctly 
          {
           response.sendRedirect("homepage.jsp");
          }
          %>

请回答这个问题

1 个答案:

答案 0 :(得分:0)

if(c!=null) {
    if(c==c1) {
        response.sendRedirect("homepage.jsp");
    }
}