int msgid=Integer.parseInt(request.getParameter("id"));    
application.setAttrbute("num",new Integer(msgid));

在application中这样共享整型数据可以吗

在接收application共享整型数据时,要怎样使用
Object num=application.getAttribute("num");
sql= "update message set msgname='"+name+"',msgcontent='"+note+"' where msgid="+num;
在num后面要加什么:num.XXXXXX