implicit object out JSP Example

"out" is one of the 9 implicit objects, Java supports. It represents an object of javax.servlet.jsp.JspWriter, a subclass of character stream java.io.Writer. Any data given to implicit object out JSP goes as output stream which is sent to client as response. That is, Programmer uses out object to send data to client. It is equivalent …

implicit object out JSP Example Read More »