I'm not sure why you said 'no,'
sillyboy? But yes, since chicago1985 instantiated the object to
null, there wouldn't be anything to 'get.'
What concerns me is that he actually declared the variable
request. I'm assuming the class this method belongs to, is a
servlet? That is, the class extends
javax.servlet.http.HttpServlet... please confirm this. If it is a servlet then you'd have access to the request object via the
doGet and
doPost methods. Depending on how you send information to the servlet, one or both methods are applicable.
The
request object is the
HttpServletRequest object found in the parameter of either mentioned method. Hope this helps.