Java Servlet Programming Question:

Request parameter How to find whether a parameter exists in the request object?

Tweet Share WhatsApp

Answer:

1.boolean hasFoo = !(request.getParameter("foo") == null || request.getParameter("foo").equals(""));
2. boolean hasParameter = request.getParameterMap().contains(theParameter);
(which works in Servlet 2.3+)

Download Java Servlet Programming PDF Read All 26 Java Servlet Programming Questions
Previous QuestionNext Question
What is new in ServletRequest interface?(Servlet 2.4)How can I send user authentication information while makingURLConnection?