What is the differecnce between JspWriter and PrintWriter?
Question:
What is the differecnce between JspWriter and PrintWriter?
Question:What is the differecnce between JspWriter and PrintWriter?
Answer
JspWriter is a buffered version of the PrintWriter. JspWriter also differs from a PrintWriter by throwing java.io.IOException, which a PrintWriter does not. If the page is not buffered, output written to this JspWriter object will be written through to the PrintWriter directly, which will be created if necessary by invoking the getWriter() method on the response object. But if the page is buffered, the PrintWriter object will not be created until the buffer is flushed and operations like setContentType() are legal. Since this flexibility simplifies programming substantially, buffering is the default for JSP pages.
By:Jalees Date:
What is the differecnce between JspWriter and PrintWriter?