-
convert primitive int to Object (1 messages)
- Posted by: harish pathak
- Posted on: June 10 2006 10:24 EDT
Hi All, I have to convert primitive int to Object. How it is possible. Please reply soon I am getting error while executing following code.. request.setAttribute("fabricatorid",fabricatorid); request.setAttribute("bannerid",bannerid); as fabricatorid is int and it required Object. ThanksThreaded Messages (1)
- Re: convert primitive int to Object by david flores on June 10 2006 22:04 EDT
-
Re: convert primitive int to Object[ Go to top ]
- Posted by: david flores
- Posted on: June 10 2006 22:04 EDT
- in response to harish pathak
try with: request.setAttribute("bannerid", new Integer(bannerid) )