如何在JSP页面中编写while循环?

以下是while循环示例-

<%! int fontSize; %>
<html>
   <head>
      <title>WHILE LOOP Example</title>
   </head>
   <body>
      <%while ( fontSize <= 3){ %>
         <font color = "green" size = "<%= fontSize %>">
            JSP Tutorial
         </font><br />
         <%fontSize++;%>
      <%}%>
   </body>
</html>

上面的代码将产生以下结果-

JSP Tutorial
JSP Tutorial
JSP Tutorial