Passing the out Object to a Method : Methods « JSP « Java Tutorial






<HTML>
  <HEAD>
    <TITLE>Passing the out Object to a Method</TITLE>
  </HEAD>

  <BODY>
    <H1>Passing the out Object to a Method</H1>
    <%!
    void printem(javax.servlet.jsp.JspWriter out) throws java.io.IOException
    {
        out.println("Hello from JSP!");
    }
    %>

    <%
        printem(out);
    %>
  </BODY>
</HTML>








23.15.Methods
23.15.1.Creating a Method
23.15.2.Declaring Multiple Methods
23.15.3.Using Recursion
23.15.4.Passing Arrays to Methods
23.15.5.Passing the out Object to a Method
23.15.6.Define function before HTML page
23.15.7.Use page level function