Define ServletOutputStream object in Jsp »
By Ramakrishna on Aug 24, 2008 in Jsp Tutorial | 0 Comments
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 [...]
