Saturday 17 December 2011

JSP Examples Tutorial - Overloading Methods


<HTML>
    <HEAD>
        <TITLE>Overloading Methods</TITLE>
    </HEAD>
    <BODY>
        <H1>Overloading Methods</H1>
        <%!
            javax.servlet.jsp.JspWriter localOut;
            void printText() throws java.io.IOException
            {
                localOut.println("Hello!<BR>");
            }
            void printText(String s) throws java.io.IOException
            {
                localOut.println(s + "<BR>");
            }
        %>     
        <%
        localOut = out;     
        printText();
        printText("Hello from JSP!");
        %>
    </BODY>
</HTML>

No comments:

Post a Comment