Define ServletOutputStream object in Jsp



Q) Can you make use of a ServletOutputStream object from within a JSP page?
A) No You can’t  use ServletOutputStream .You are supposed to make use of only a JSPWriter object (given to you in the form of the implicit object out) for replying to clients.
A JSPWriter can be viewed as a buffered version of the stream object returned by response.getWriter(), although from an implementational perspective, it is not.
A page author can always disable the default buffering for any page using a page directive as:

Random Posts

  • What are synchronized methods and synchronized statements?
  • Servlet Important Questions
  • J2EE Interview Questions
  • JSF Important Questions
  • Write a Short notes on Vectors

Post a Comment