1.

Can You Make Use Of A Servletoutputstream Object From Within A Jsp Page?

Answer»

No. 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.

No. 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.



Discussion

No Comment Found