Certainty???



Mussum wrote:

Subject: Doubt!!!

That's a poor subject line, most people put the subject of their posting in the subject line. The subject of your question appears to be

Subject: JSP request.getParameter() for integer values.

The method request.getParameter searchs parameter type String and if
will have type Integer?

You don't mention JSP but I guess that's the context of your question?
getParameter() returns a String

Conversion of type or serialisation?


I imagine you'll want to use Integer.parseInt() or equivalent.
.